pub struct SCS(/* private fields */);
Available on crate feature
kernel
only.Expand description
GetBinaryType
return value (u32
).
Implementations§
Source§impl SCS
impl SCS
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 SCS
impl SCS
pub const W_32BIT_BINARY: Self
pub const DOS_BINARY: Self
pub const WOW_BINARY: Self
pub const PIF_BINARY: Self
pub const POSIX_BINARY: Self
pub const OS216_BINARY: Self
pub const W_64BIT_BINARY: Self
Trait Implementations§
Source§impl Ord for SCS
impl Ord for SCS
Source§impl PartialOrd for SCS
impl PartialOrd for SCS
impl Copy for SCS
impl Eq for SCS
impl StructuralPartialEq for SCS
Auto Trait Implementations§
impl Freeze for SCS
impl RefUnwindSafe for SCS
impl Send for SCS
impl Sync for SCS
impl Unpin for SCS
impl UnwindSafe for SCS
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