pub enum AliasStatus {
Builtin,
Custom,
Disabled,
Overridden,
}Expand description
Status of an alias (for display purposes).
Variants§
Builtin
Built-in alias, unmodified
Custom
Custom alias defined in config
Disabled
Built-in alias disabled via empty array in config
Overridden
Built-in alias overridden with new patterns in config
Trait Implementations§
Source§impl Clone for AliasStatus
impl Clone for AliasStatus
Source§fn clone(&self) -> AliasStatus
fn clone(&self) -> AliasStatus
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 moreSource§impl Debug for AliasStatus
impl Debug for AliasStatus
Source§impl Display for AliasStatus
impl Display for AliasStatus
Source§impl PartialEq for AliasStatus
impl PartialEq for AliasStatus
Source§fn eq(&self, other: &AliasStatus) -> bool
fn eq(&self, other: &AliasStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AliasStatus
impl Serialize for AliasStatus
impl Eq for AliasStatus
impl StructuralPartialEq for AliasStatus
Auto Trait Implementations§
impl Freeze for AliasStatus
impl RefUnwindSafe for AliasStatus
impl Send for AliasStatus
impl Sync for AliasStatus
impl Unpin for AliasStatus
impl UnsafeUnpin for AliasStatus
impl UnwindSafe for AliasStatus
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§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.