pub enum BlockRepair {
Created,
Deduplicated,
CtrlRRestored,
Upgraded,
AlreadyOk,
}Expand description
Résultat d’une réparation du bloc .bashrc par mnemo doctor --fix.
Variants§
Created
Bloc ajouté (il était absent).
Deduplicated
Doublons supprimés, un seul bloc propre conservé.
CtrlRRestored
Bloc régénéré pour restaurer le raccourci Ctrl+R.
Upgraded
Bloc obsolète régénéré vers la version courante.
AlreadyOk
Rien à faire : un unique bloc complet était déjà présent.
Trait Implementations§
Source§impl Clone for BlockRepair
impl Clone for BlockRepair
Source§fn clone(&self) -> BlockRepair
fn clone(&self) -> BlockRepair
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BlockRepair
Source§impl Debug for BlockRepair
impl Debug for BlockRepair
impl Eq for BlockRepair
Source§impl PartialEq for BlockRepair
impl PartialEq for BlockRepair
impl StructuralPartialEq for BlockRepair
Auto Trait Implementations§
impl Freeze for BlockRepair
impl RefUnwindSafe for BlockRepair
impl Send for BlockRepair
impl Sync for BlockRepair
impl Unpin for BlockRepair
impl UnsafeUnpin for BlockRepair
impl UnwindSafe for BlockRepair
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