Enum typescript_tools::pin::PinLintErrorKind
source · pub enum PinLintErrorKind {
FromFile(FromFileError),
EnumeratePackageManifests(EnumeratePackageManifestsError),
NonStringVersionNumber {
package_name: String,
dependency_name: String,
},
UnpinnedDependencies(UnpinnedMonorepoDependencies),
}
Variants§
FromFile(FromFileError)
EnumeratePackageManifests(EnumeratePackageManifestsError)
NonStringVersionNumber
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
UnpinnedDependencies(UnpinnedMonorepoDependencies)
Trait Implementations§
source§impl Debug for PinLintErrorKind
impl Debug for PinLintErrorKind
source§impl From<PinLintErrorKind> for PinLintError
impl From<PinLintErrorKind> for PinLintError
source§fn from(kind: PinLintErrorKind) -> Self
fn from(kind: PinLintErrorKind) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for PinLintErrorKind
impl Send for PinLintErrorKind
impl Sync for PinLintErrorKind
impl Unpin for PinLintErrorKind
impl !UnwindSafe for PinLintErrorKind
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