pub struct BCN(/* private fields */);
Available on crate features
kernel
and comctl
only.Expand description
Button control WM_NOTIFY
notifications
(i32
).
This is a wm::Notify
notification
code, convertible to/from NmhdrCode
.
Implementations§
Source§impl BCN
impl BCN
Sourcepub const unsafe fn as_mut(&mut self) -> &mut i32
pub const unsafe fn as_mut(&mut self) -> &mut i32
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: i32) -> Self
pub const unsafe fn from_raw(v: i32) -> 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) -> i32
pub const fn raw(&self) -> i32
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 BCN
impl BitAndAssign for BCN
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moreSource§impl BitOrAssign for BCN
impl BitOrAssign for BCN
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moreSource§impl BitXorAssign for BCN
impl BitXorAssign for BCN
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moreSource§impl Ord for BCN
impl Ord for BCN
Source§impl PartialOrd for BCN
impl PartialOrd for BCN
impl Copy for BCN
impl Eq for BCN
impl StructuralPartialEq for BCN
Auto Trait Implementations§
impl Freeze for BCN
impl RefUnwindSafe for BCN
impl Send for BCN
impl Sync for BCN
impl Unpin for BCN
impl UnwindSafe for BCN
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