pub enum PackageValidationErrorKind {
WorkspaceLintsMissing,
WorkspaceLintsWrongValue(Value),
}Expand description
Why a package might fail the check.
Variants§
WorkspaceLintsMissing
There was no lints.workspace field.
WorkspaceLintsWrongValue(Value)
The lints.workspace field was provided, but had the wrong value.
Trait Implementations§
Source§impl Debug for PackageValidationErrorKind
impl Debug for PackageValidationErrorKind
Auto Trait Implementations§
impl Freeze for PackageValidationErrorKind
impl RefUnwindSafe for PackageValidationErrorKind
impl Send for PackageValidationErrorKind
impl Sync for PackageValidationErrorKind
impl Unpin for PackageValidationErrorKind
impl UnwindSafe for PackageValidationErrorKind
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