pub struct MenuSubmenuModels {Show 14 fields
pub open_value: Model<Option<Arc<str>>>,
pub trigger: Model<Option<GlobalElementId>>,
pub last_pointer: Model<Option<Point>>,
pub geometry: Model<Option<MenuSubmenuGeometry>>,
pub close_timer: Model<Option<TimerToken>>,
pub pointer_dir: Model<Option<GraceSide>>,
pub pointer_grace_intent: Model<Option<GraceIntent>>,
pub pointer_grace_timer: Model<Option<TimerToken>>,
pub focus_target: Model<Option<GlobalElementId>>,
pub focus_timer: Model<Option<TimerToken>>,
pub focus_retry_attempts: Model<u32>,
pub pending_open_value: Model<Option<Arc<str>>>,
pub pending_open_trigger: Model<Option<GlobalElementId>>,
pub open_timer: Model<Option<TimerToken>>,
}Fields§
§open_value: Model<Option<Arc<str>>>§trigger: Model<Option<GlobalElementId>>§last_pointer: Model<Option<Point>>§geometry: Model<Option<MenuSubmenuGeometry>>§close_timer: Model<Option<TimerToken>>§pointer_dir: Model<Option<GraceSide>>§pointer_grace_intent: Model<Option<GraceIntent>>§pointer_grace_timer: Model<Option<TimerToken>>§focus_target: Model<Option<GlobalElementId>>§focus_timer: Model<Option<TimerToken>>§focus_retry_attempts: Model<u32>§pending_open_value: Model<Option<Arc<str>>>§pending_open_trigger: Model<Option<GlobalElementId>>§open_timer: Model<Option<TimerToken>>Trait Implementations§
Source§fn clone(&self) -> MenuSubmenuModels
fn clone(&self) -> MenuSubmenuModels
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
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