pub struct UDM(/* private fields */);
Available on crate features
kernel
and comctl
only.Implementations§
Source§impl UDM
impl UDM
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 UDM
impl UDM
pub const SETRANGE: Self
pub const GETRANGE: Self
pub const SETPOS: Self
pub const GETPOS: Self
pub const SETBUDDY: Self
pub const GETBUDDY: Self
pub const SETACCEL: Self
pub const GETACCEL: Self
pub const SETBASE: Self
pub const GETBASE: Self
pub const SETRANGE32: Self
pub const GETRANGE32: Self
pub const SETUNICODEFORMAT: Self
pub const GETUNICODEFORMAT: Self
pub const SETPOS32: Self
pub const GETPOS32: Self
Trait Implementations§
Source§impl BitAndAssign for UDM
impl BitAndAssign for UDM
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moreSource§impl BitOrAssign for UDM
impl BitOrAssign for UDM
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moreSource§impl BitXorAssign for UDM
impl BitXorAssign for UDM
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moreSource§impl Ord for UDM
impl Ord for UDM
Source§impl PartialOrd for UDM
impl PartialOrd for UDM
impl Copy for UDM
impl Eq for UDM
impl StructuralPartialEq for UDM
Auto Trait Implementations§
impl Freeze for UDM
impl RefUnwindSafe for UDM
impl Send for UDM
impl Sync for UDM
impl Unpin for UDM
impl UnwindSafe for UDM
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