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