pub enum LoadWarningKind {
ShadowsBuiltin,
SkippedNonToml,
}Expand description
Categories of advisory warnings.
Variants§
ShadowsBuiltin
A user pattern uses the same id as a built-in pattern. The
user version wins; this is recorded so doctor can hint
“you’re shadowing the built-in <id>”.
SkippedNonToml
A non-.toml file was found in patterns.d/ and skipped.
Useful for catching stray editor backups (*.toml.bak,
*.swp).
Trait Implementations§
Source§impl Clone for LoadWarningKind
impl Clone for LoadWarningKind
Source§fn clone(&self) -> LoadWarningKind
fn clone(&self) -> LoadWarningKind
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 LoadWarningKind
impl Debug for LoadWarningKind
impl Eq for LoadWarningKind
Source§impl PartialEq for LoadWarningKind
impl PartialEq for LoadWarningKind
Source§fn eq(&self, other: &LoadWarningKind) -> bool
fn eq(&self, other: &LoadWarningKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LoadWarningKind
Auto Trait Implementations§
impl Freeze for LoadWarningKind
impl RefUnwindSafe for LoadWarningKind
impl Send for LoadWarningKind
impl Sync for LoadWarningKind
impl Unpin for LoadWarningKind
impl UnsafeUnpin for LoadWarningKind
impl UnwindSafe for LoadWarningKind
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.