pub struct MFSTARTUP(/* private fields */);
Available on crate features
kernel
and mf
only.Expand description
MFStartup
flags
(u32
).
Implementations§
Source§impl MFSTARTUP
impl MFSTARTUP
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 Ord for MFSTARTUP
impl Ord for MFSTARTUP
Source§impl PartialOrd for MFSTARTUP
impl PartialOrd for MFSTARTUP
impl Copy for MFSTARTUP
impl Eq for MFSTARTUP
impl StructuralPartialEq for MFSTARTUP
Auto Trait Implementations§
impl Freeze for MFSTARTUP
impl RefUnwindSafe for MFSTARTUP
impl Send for MFSTARTUP
impl Sync for MFSTARTUP
impl Unpin for MFSTARTUP
impl UnwindSafe for MFSTARTUP
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