pub enum TuiMode {
Search,
Help,
ConfirmDelete,
Filters,
Details,
}Expand description
Mode courant de l’interface (détermine le rendu et l’interprétation des touches).
Variants§
Search
Saisie de recherche (la frappe édite la requête).
Help
Aide plein écran.
ConfirmDelete
Confirmation de suppression.
Filters
Panneau de filtres.
Details
Focus sur la liste/les détails (raccourcis vim, la frappe ne modifie pas la requête).
Trait Implementations§
impl Copy for TuiMode
impl Eq for TuiMode
impl StructuralPartialEq for TuiMode
Auto Trait Implementations§
impl Freeze for TuiMode
impl RefUnwindSafe for TuiMode
impl Send for TuiMode
impl Sync for TuiMode
impl Unpin for TuiMode
impl UnsafeUnpin for TuiMode
impl UnwindSafe for TuiMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more