pub struct HELPW(/* private fields */);
Available on crate features
kernel
and user
only.Expand description
HWND::WinHelp
uCommand
(u32
).
Originally has HELP
prefix.
Implementations§
Source§impl HELPW
impl HELPW
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 HELPW
impl HELPW
pub const CONTEXT: Self
pub const QUIT: Self
pub const INDEX: Self
pub const CONTENTS: Self
pub const HELPONHELP: Self
pub const SETINDEX: Self
pub const SETCONTENTS: Self
pub const CONTEXTPOPUP: Self
pub const FORCEFILE: Self
pub const KEY: Self
pub const COMMAND: Self
pub const PARTIALKEY: Self
pub const MULTIKEY: Self
pub const SETWINPOS: Self
pub const CONTEXTMENU: Self
pub const FINDER: Self
pub const WM_HELP: Self
pub const SETPOPUP_POS: Self
pub const TCARD: Self
pub const TCARD_DATA: Self
pub const TCARD_OTHER_CALLER: Self
Trait Implementations§
Source§impl Ord for HELPW
impl Ord for HELPW
Source§impl PartialOrd for HELPW
impl PartialOrd for HELPW
impl Copy for HELPW
impl Eq for HELPW
impl StructuralPartialEq for HELPW
Auto Trait Implementations§
impl Freeze for HELPW
impl RefUnwindSafe for HELPW
impl Send for HELPW
impl Sync for HELPW
impl Unpin for HELPW
impl UnwindSafe for HELPW
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