pub enum FocusTarget {
Next,
Prev,
View(ViewId),
}
Expand description
A target for focus.
Variants§
Next
Focus should be given to the next view in the focus chain.
Prev
Focus should be given to the previous view in the focus chain.
View(ViewId)
Focus should be given to a specific view.
Trait Implementations§
Source§impl Clone for FocusTarget
impl Clone for FocusTarget
Source§fn clone(&self) -> FocusTarget
fn clone(&self) -> FocusTarget
Returns a copy 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 moreSource§impl Debug for FocusTarget
impl Debug for FocusTarget
Source§impl Hash for FocusTarget
impl Hash for FocusTarget
Source§impl PartialEq for FocusTarget
impl PartialEq for FocusTarget
impl Copy for FocusTarget
impl Eq for FocusTarget
impl StructuralPartialEq for FocusTarget
Auto Trait Implementations§
impl Freeze for FocusTarget
impl RefUnwindSafe for FocusTarget
impl Send for FocusTarget
impl Sync for FocusTarget
impl Unpin for FocusTarget
impl UnwindSafe for FocusTarget
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