pub enum FsckError {
Show 50 variants
AllocatedBytesMismatch(Vec<(u64, u64)>, Vec<(u64, u64)>),
AllocatedSizeMismatch(u64, u64, u64, u64),
AllocationForNonexistentOwner(Allocation),
AllocationMismatch(Allocation, Allocation),
CasefoldInconsistency(u64, u64, u64),
ConflictingTypeForLink(u64, u64, Value, Value),
ExtentExceedsLength(u64, u64, u64, u64, Value),
ExtraAllocations(Vec<Allocation>),
ObjectHasChildren(u64, u64),
UnexpectedJournalFileOffset(u64),
LinkCycle(u64, u64),
MalformedAllocation(Allocation),
MalformedExtent(u64, u64, Range<u64>, u64),
MalformedObjectRecord(u64, Key, Value),
MisalignedAllocation(Allocation),
MisalignedExtent(u64, u64, Range<u64>, u64),
MissingAllocation(Allocation),
MissingAttributeForExtendedAttribute(u64, u64, u64),
MissingDataAttribute(u64, u64),
MissingObjectInfo(u64, u64),
MultipleLinksToDirectory(u64, u64),
NonRootProjectIdMetadata(u64, u64, u64),
ObjectCountMismatch(u64, u64, u64),
ProjectOnGraveyard(u64, u64, u64),
ProjectUsedWithNoUsageTracking(u64, u64, u64),
RefCountMismatch(u64, u64, u64),
RootObjectHasParent(u64, u64, u64),
SubDirCountMismatch(u64, u64, u64, u64),
TombstonedObjectHasRecords(u64, u64),
UnexpectedObjectInGraveyard(u64),
UnexpectedRecordInObjectStore(u64, Key, Value),
VolumeInChildStore(u64, u64),
BadGraveyardValue(u64, u64),
MissingEncryptionKeys(u64, u64),
MissingKey(u64, u64, u64),
EncryptedChildDirectoryNoWrappingKey(u64, u64),
EncryptedDirectoryHasUnencryptedChild(u64, u64, u64),
UnencryptedDirectoryHasEncryptedChild(u64, u64, u64),
ChildEncryptedWithDifferentWrappingKeyThanParent(u64, u64, u64, u128, u128),
DuplicateKey(u64, u64, u64),
ZombieFile(u64, u64, Vec<u64>),
ZombieDir(u64, u64, u64),
ZombieSymlink(u64, u64, Vec<u64>),
VerifiedFileDoesNotHaveAMerkleAttribute(u64, u64),
NonFileMarkedAsVerified(u64, u64),
IncorrectMerkleTreeSize(u64, u64, u64, u64),
TombstonedAttributeDoesNotExist(u64, u64, u64),
TrimValueForGraveyardAttributeEntry(u64, u64, u64),
MissingOverwriteExtents(u64, u64, u64),
OverwriteExtentFlagUnset(u64, u64, u64),
}
Variants§
AllocatedBytesMismatch(Vec<(u64, u64)>, Vec<(u64, u64)>)
AllocatedSizeMismatch(u64, u64, u64, u64)
AllocationForNonexistentOwner(Allocation)
AllocationMismatch(Allocation, Allocation)
CasefoldInconsistency(u64, u64, u64)
ConflictingTypeForLink(u64, u64, Value, Value)
ExtentExceedsLength(u64, u64, u64, u64, Value)
ExtraAllocations(Vec<Allocation>)
ObjectHasChildren(u64, u64)
UnexpectedJournalFileOffset(u64)
LinkCycle(u64, u64)
MalformedAllocation(Allocation)
MalformedExtent(u64, u64, Range<u64>, u64)
MalformedObjectRecord(u64, Key, Value)
MisalignedAllocation(Allocation)
MisalignedExtent(u64, u64, Range<u64>, u64)
MissingAllocation(Allocation)
MissingAttributeForExtendedAttribute(u64, u64, u64)
MissingDataAttribute(u64, u64)
MissingObjectInfo(u64, u64)
MultipleLinksToDirectory(u64, u64)
NonRootProjectIdMetadata(u64, u64, u64)
ObjectCountMismatch(u64, u64, u64)
ProjectOnGraveyard(u64, u64, u64)
ProjectUsedWithNoUsageTracking(u64, u64, u64)
RefCountMismatch(u64, u64, u64)
RootObjectHasParent(u64, u64, u64)
SubDirCountMismatch(u64, u64, u64, u64)
TombstonedObjectHasRecords(u64, u64)
UnexpectedObjectInGraveyard(u64)
UnexpectedRecordInObjectStore(u64, Key, Value)
VolumeInChildStore(u64, u64)
BadGraveyardValue(u64, u64)
MissingEncryptionKeys(u64, u64)
MissingKey(u64, u64, u64)
EncryptedChildDirectoryNoWrappingKey(u64, u64)
EncryptedDirectoryHasUnencryptedChild(u64, u64, u64)
UnencryptedDirectoryHasEncryptedChild(u64, u64, u64)
ChildEncryptedWithDifferentWrappingKeyThanParent(u64, u64, u64, u128, u128)
DuplicateKey(u64, u64, u64)
ZombieFile(u64, u64, Vec<u64>)
ZombieDir(u64, u64, u64)
ZombieSymlink(u64, u64, Vec<u64>)
VerifiedFileDoesNotHaveAMerkleAttribute(u64, u64)
NonFileMarkedAsVerified(u64, u64)
IncorrectMerkleTreeSize(u64, u64, u64, u64)
TombstonedAttributeDoesNotExist(u64, u64, u64)
TrimValueForGraveyardAttributeEntry(u64, u64, u64)
MissingOverwriteExtents(u64, u64, u64)
OverwriteExtentFlagUnset(u64, u64, u64)
Trait Implementations§
impl StructuralPartialEq for FsckError
Auto Trait Implementations§
impl Freeze for FsckError
impl RefUnwindSafe for FsckError
impl Send for FsckError
impl Sync for FsckError
impl Unpin for FsckError
impl UnwindSafe for FsckError
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<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more