pub struct TBN(/* private fields */);
Available on crate features
kernel
and comctl
only.Expand description
Toolbar control WM_NOTIFY
notifications
(i32
).
This is a wm::Notify
notification
code, convertible to/from NmhdrCode
.
Implementations§
Source§impl TBN
impl TBN
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.
Source§impl TBN
impl TBN
pub const BEGINADJUST: Self
pub const BEGINDRAG: Self
pub const CUSTHELP: Self
pub const DELETINGBUTTON: Self
pub const DRAGOUT: Self
pub const DRAGOVER: Self
pub const DROPDOWN: Self
pub const DUPACCELERATOR: Self
pub const ENDADJUST: Self
pub const ENDDRAG: Self
pub const GETBUTTONINFO: Self
pub const GETDISPINFO: Self
pub const GETINFOTIP: Self
pub const GETOBJECT: Self
pub const HOTITEMCHANGE: Self
pub const INITCUSTOMIZE: Self
pub const MAPACCELERATOR: Self
pub const QUERYDELETE: Self
pub const QUERYINSERT: Self
pub const RESET: Self
pub const RESTORE: Self
pub const SAVE: Self
pub const TOOLBARCHANGE: Self
pub const WRAPACCELERATOR: Self
pub const WRAPHOTITEM: Self
Trait Implementations§
Source§impl BitAndAssign for TBN
impl BitAndAssign for TBN
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moreSource§impl BitOrAssign for TBN
impl BitOrAssign for TBN
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moreSource§impl BitXorAssign for TBN
impl BitXorAssign for TBN
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moreSource§impl Ord for TBN
impl Ord for TBN
Source§impl PartialOrd for TBN
impl PartialOrd for TBN
impl Copy for TBN
impl Eq for TBN
impl StructuralPartialEq for TBN
Auto Trait Implementations§
impl Freeze for TBN
impl RefUnwindSafe for TBN
impl Send for TBN
impl Sync for TBN
impl Unpin for TBN
impl UnwindSafe for TBN
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