pub struct BCSS(/* private fields */);
Available on crate features
kernel
and comctl
only.Expand description
BUTTON_SPLITINFO
uSplitStyle
(u32
).
This is a bitflag constant.
Implementations§
Source§impl BCSS
impl BCSS
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.
Trait Implementations§
Source§impl BitAndAssign for BCSS
impl BitAndAssign for BCSS
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moreSource§impl BitOrAssign for BCSS
impl BitOrAssign for BCSS
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moreSource§impl BitXorAssign for BCSS
impl BitXorAssign for BCSS
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moreSource§impl Ord for BCSS
impl Ord for BCSS
Source§impl PartialOrd for BCSS
impl PartialOrd for BCSS
impl Copy for BCSS
impl Eq for BCSS
impl StructuralPartialEq for BCSS
Auto Trait Implementations§
impl Freeze for BCSS
impl RefUnwindSafe for BCSS
impl Send for BCSS
impl Sync for BCSS
impl Unpin for BCSS
impl UnwindSafe for BCSS
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