pub enum PopupWindowLocation {
TopLevel(Rc<dyn WindowAdapter>),
ChildWindow(LogicalPoint),
}Expand description
This enum describes the different ways a popup can be rendered by the back-end.
Variants§
TopLevel(Rc<dyn WindowAdapter>)
The popup is rendered in its own top-level window that is know to the windowing system.
ChildWindow(LogicalPoint)
The popup is rendered as an embedded child window at the given position.
Auto Trait Implementations§
impl !RefUnwindSafe for PopupWindowLocation
impl !Send for PopupWindowLocation
impl !Sync for PopupWindowLocation
impl !UnwindSafe for PopupWindowLocation
impl Freeze for PopupWindowLocation
impl Unpin for PopupWindowLocation
impl UnsafeUnpin for PopupWindowLocation
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