struct OpenPopup {
id: Id,
pos: Option<Pos2>,
open_this_frame: bool,
}
Expand description
State of an open popup.
Fields§
§id: Id
Id of the popup.
pos: Option<Pos2>
Optional position of the popup.
open_this_frame: bool
Whether this popup was still open this frame. Otherwise it’s considered abandoned and Memory::popup
will be cleared.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OpenPopup
impl RefUnwindSafe for OpenPopup
impl Send for OpenPopup
impl Sync for OpenPopup
impl Unpin for OpenPopup
impl UnwindSafe for OpenPopup
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