pub struct HWND_PLACE(/* private fields */);
Available on crate features
kernel
and user
only.Expand description
HWND::SetWindowPos
hWndInsertAfter
(isize
).
Implementations§
Source§impl HWND_PLACE
impl HWND_PLACE
Sourcepub const unsafe fn as_mut(&mut self) -> &mut isize
pub const unsafe fn as_mut(&mut self) -> &mut isize
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: isize) -> Self
pub const unsafe fn from_raw(v: isize) -> 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) -> isize
pub const fn raw(&self) -> isize
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 AsRef<isize> for HWND_PLACE
impl AsRef<isize> for HWND_PLACE
Source§impl Binary for HWND_PLACE
impl Binary for HWND_PLACE
Source§impl Clone for HWND_PLACE
impl Clone for HWND_PLACE
Source§fn clone(&self) -> HWND_PLACE
fn clone(&self) -> HWND_PLACE
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for HWND_PLACE
impl Debug for HWND_PLACE
Source§impl Default for HWND_PLACE
impl Default for HWND_PLACE
Source§fn default() -> HWND_PLACE
fn default() -> HWND_PLACE
Returns the “default value” for a type. Read more
Source§impl Display for HWND_PLACE
impl Display for HWND_PLACE
Source§impl From<HWND_PLACE> for isize
impl From<HWND_PLACE> for isize
Source§fn from(v: HWND_PLACE) -> Self
fn from(v: HWND_PLACE) -> Self
Converts to this type from the input type.
Source§impl Hash for HWND_PLACE
impl Hash for HWND_PLACE
Source§impl LowerHex for HWND_PLACE
impl LowerHex for HWND_PLACE
Source§impl Octal for HWND_PLACE
impl Octal for HWND_PLACE
Source§impl Ord for HWND_PLACE
impl Ord for HWND_PLACE
Source§impl PartialEq for HWND_PLACE
impl PartialEq for HWND_PLACE
Source§impl PartialOrd for HWND_PLACE
impl PartialOrd for HWND_PLACE
Source§impl UpperHex for HWND_PLACE
impl UpperHex for HWND_PLACE
impl Copy for HWND_PLACE
impl Eq for HWND_PLACE
impl StructuralPartialEq for HWND_PLACE
Auto Trait Implementations§
impl Freeze for HWND_PLACE
impl RefUnwindSafe for HWND_PLACE
impl Send for HWND_PLACE
impl Sync for HWND_PLACE
impl Unpin for HWND_PLACE
impl UnwindSafe for HWND_PLACE
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