pub struct ATOM(/* private fields */);
Available on crate feature
user
only.Expand description
ATOM
returned by RegisterClassEx
.
Implementations§
Source§impl ATOM
impl ATOM
Sourcepub const unsafe fn as_mut(&mut self) -> &mut u16
pub const unsafe fn as_mut(&mut self) -> &mut u16
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: u16) -> Self
pub const unsafe fn from_raw(v: u16) -> 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) -> u16
pub const fn raw(&self) -> u16
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 Ord for ATOM
impl Ord for ATOM
Source§impl PartialOrd for ATOM
impl PartialOrd for ATOM
impl Copy for ATOM
impl Eq for ATOM
impl StructuralPartialEq for ATOM
Auto Trait Implementations§
impl Freeze for ATOM
impl RefUnwindSafe for ATOM
impl Send for ATOM
impl Sync for ATOM
impl Unpin for ATOM
impl UnwindSafe for ATOM
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