pub enum MisconfigReason {
UnparsableKey,
EmptyValue,
}Expand description
Why an override entry is misconfigured.
Variants§
UnparsableKey
The override key cannot be parsed into a recognised pnpm shape.
EmptyValue
The override value is missing or empty.
Implementations§
Trait Implementations§
Source§impl Clone for MisconfigReason
impl Clone for MisconfigReason
Source§fn clone(&self) -> MisconfigReason
fn clone(&self) -> MisconfigReason
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 MisconfigReason
impl Debug for MisconfigReason
Source§impl<'de> Deserialize<'de> for MisconfigReason
impl<'de> Deserialize<'de> for MisconfigReason
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MisconfigReason
impl PartialEq for MisconfigReason
Source§fn eq(&self, other: &MisconfigReason) -> bool
fn eq(&self, other: &MisconfigReason) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MisconfigReason
impl Serialize for MisconfigReason
impl Copy for MisconfigReason
impl Eq for MisconfigReason
impl StructuralPartialEq for MisconfigReason
Auto Trait Implementations§
impl Freeze for MisconfigReason
impl RefUnwindSafe for MisconfigReason
impl Send for MisconfigReason
impl Sync for MisconfigReason
impl Unpin for MisconfigReason
impl UnsafeUnpin for MisconfigReason
impl UnwindSafe for MisconfigReason
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.