pub enum NavSignal {
Show 21 variants
None,
Register(NavType),
Unregister(NavType),
Select(WidgetIdOrRef),
Unselect,
Lock,
Unlock,
Accept(bool),
Context(bool),
Cancel(bool),
Up,
Down,
Left,
Right,
Prev,
Next,
Jump(NavJump),
FocusTextInput(WidgetIdOrRef),
TextChange(NavTextChange),
Axis(String, Scalar),
Custom(WidgetIdOrRef, String),
}
Variants§
None
Register(NavType)
Unregister(NavType)
Select(WidgetIdOrRef)
Unselect
Lock
Unlock
Accept(bool)
Context(bool)
Cancel(bool)
Up
Down
Left
Right
Prev
Next
Jump(NavJump)
FocusTextInput(WidgetIdOrRef)
TextChange(NavTextChange)
Axis(String, Scalar)
Custom(WidgetIdOrRef, String)
Trait Implementations§
Auto 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