Struct HWNDWrapper
struct HWNDWrapper {
hwdn: HWND,
}Expand description
Hacky wrapper around a window handle.
As we cannot implement foreign traits for foreign structs we introduce this wrapper to implement Send for [HWND].
Fields§
§hwdn: HWNDTrait Implementations§
§impl Debug for HWNDWrapper
impl Debug for HWNDWrapper
§impl PartialEq for HWNDWrapper
impl PartialEq for HWNDWrapper
impl Eq for HWNDWrapper
impl Send for HWNDWrapper
Auto Trait Implementations§
impl Freeze for HWNDWrapper
impl RefUnwindSafe for HWNDWrapper
impl !Sync for HWNDWrapper
impl Unpin for HWNDWrapper
impl UnsafeUnpin for HWNDWrapper
impl UnwindSafe for HWNDWrapper
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