pub struct CBEM(/* private fields */);
Available on crate features
kernel
and comctl
only.Implementations§
Source§impl CBEM
impl CBEM
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 CBEM
impl CBEM
pub const SETIMAGELIST: Self
pub const GETIMAGELIST: Self
pub const DELETEITEM: Self
pub const GETCOMBOCONTROL: Self
pub const GETEDITCONTROL: Self
pub const SETEXTENDEDSTYLE: Self
pub const GETEXTENDEDSTYLE: Self
pub const SETUNICODEFORMAT: Self
pub const GETUNICODEFORMAT: Self
pub const HASEDITCHANGED: Self
pub const INSERTITEM: Self
pub const SETITEM: Self
pub const GETITEM: Self
Trait Implementations§
Source§impl BitAndAssign for CBEM
impl BitAndAssign for CBEM
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moreSource§impl BitOrAssign for CBEM
impl BitOrAssign for CBEM
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moreSource§impl BitXorAssign for CBEM
impl BitXorAssign for CBEM
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moreSource§impl Ord for CBEM
impl Ord for CBEM
Source§impl PartialOrd for CBEM
impl PartialOrd for CBEM
impl Copy for CBEM
impl Eq for CBEM
impl StructuralPartialEq for CBEM
Auto Trait Implementations§
impl Freeze for CBEM
impl RefUnwindSafe for CBEM
impl Send for CBEM
impl Sync for CBEM
impl Unpin for CBEM
impl UnwindSafe for CBEM
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