pub enum FsckFatal {
MalformedGraveyard,
MalformedLayerFile(u64, u64),
MalformedStore(u64),
MisOrderedLayerFile(u64, u64),
MisOrderedObjectStore(u64),
OverlappingKeysInLayerFile(u64, u64, Key, Key),
InvalidBloomFilter(u64, u64, Key),
}Variants§
MalformedGraveyard
MalformedLayerFile(u64, u64)
MalformedStore(u64)
MisOrderedLayerFile(u64, u64)
MisOrderedObjectStore(u64)
OverlappingKeysInLayerFile(u64, u64, Key, Key)
InvalidBloomFilter(u64, u64, Key)
Trait Implementations§
impl StructuralPartialEq for FsckFatal
Auto Trait Implementations§
impl Freeze for FsckFatal
impl RefUnwindSafe for FsckFatal
impl Send for FsckFatal
impl Sync for FsckFatal
impl Unpin for FsckFatal
impl UnwindSafe for FsckFatal
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,
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§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