pub struct WindowHandle(pub *mut c_void);Expand description
Strongly-typed window handle wrapper.
Tuple Fields§
§0: *mut c_voidImplementations§
Trait Implementations§
Source§impl Clone for WindowHandle
impl Clone for WindowHandle
Source§fn clone(&self) -> WindowHandle
fn clone(&self) -> WindowHandle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for WindowHandle
Source§impl Debug for WindowHandle
impl Debug for WindowHandle
Source§impl Display for WindowHandle
impl Display for WindowHandle
impl Eq for WindowHandle
Source§impl From<HWND> for WindowHandle
impl From<HWND> for WindowHandle
Source§impl From<WindowHandle> for HWND
impl From<WindowHandle> for HWND
Source§fn from(value: WindowHandle) -> Self
fn from(value: WindowHandle) -> Self
Converts to this type from the input type.
Source§impl Hash for WindowHandle
impl Hash for WindowHandle
Source§impl PartialEq for WindowHandle
impl PartialEq for WindowHandle
Source§fn eq(&self, other: &WindowHandle) -> bool
fn eq(&self, other: &WindowHandle) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WindowHandle
Auto Trait Implementations§
impl !Send for WindowHandle
impl !Sync for WindowHandle
impl Freeze for WindowHandle
impl RefUnwindSafe for WindowHandle
impl Unpin for WindowHandle
impl UnsafeUnpin for WindowHandle
impl UnwindSafe for WindowHandle
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