pub enum HwndPlace {
Hwnd(HWND),
Place(HWND_PLACE),
None,
}
Available on crate feature
user
only.Expand description
Variant parameter for:
Variants§
Hwnd(HWND)
A handle to the window to precede the positioned window in the Z order.
Place(HWND_PLACE)
A constant specifying where the window will be placed.
None
Nothing.
Implementations§
Auto Trait Implementations§
impl Freeze for HwndPlace
impl RefUnwindSafe for HwndPlace
impl Send for HwndPlace
impl !Sync for HwndPlace
impl Unpin for HwndPlace
impl UnwindSafe for HwndPlace
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