pub struct HDS(/* private fields */);
Available on crate features
kernel
and comctl
only.Implementations§
Source§impl HDS
impl HDS
Sourcepub const unsafe fn as_mut(&mut self) -> &mut u32
pub const unsafe fn as_mut(&mut self) -> &mut u32
Returns a mutable reference to the underlying raw value.
§Safety
Be sure the integer being set is meaningful for the actual type.
Sourcepub const unsafe fn from_raw(v: u32) -> Self
pub const unsafe fn from_raw(v: u32) -> Self
Constructs a new object by wrapping the given integer value.
§Safety
Be sure the given value is meaningful for the actual type.
Sourcepub const fn raw(&self) -> u32
pub const fn raw(&self) -> u32
Returns the primitive integer underlying value.
This method is similar to Into
, but it
is const
, therefore it can be used in
const contexts.
Source§impl HDS
impl HDS
pub const HORZ: Self
pub const BUTTONS: Self
pub const HOTTRACK: Self
pub const HIDDEN: Self
pub const DRAGDROP: Self
pub const FULLDRAG: Self
pub const FILTERBAR: Self
pub const FLAT: Self
pub const CHECKBOXES: Self
pub const NOSIZING: Self
pub const OVERFLOW: Self
Trait Implementations§
Source§impl BitAndAssign for HDS
impl BitAndAssign for HDS
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moreSource§impl BitOrAssign for HDS
impl BitOrAssign for HDS
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moreSource§impl BitXorAssign for HDS
impl BitXorAssign for HDS
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moreSource§impl Ord for HDS
impl Ord for HDS
Source§impl PartialOrd for HDS
impl PartialOrd for HDS
impl Copy for HDS
impl Eq for HDS
impl StructuralPartialEq for HDS
Auto Trait Implementations§
impl Freeze for HDS
impl RefUnwindSafe for HDS
impl Send for HDS
impl Sync for HDS
impl Unpin for HDS
impl UnwindSafe for HDS
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more