Enum ext4_view::Incompatible
source · pub enum Incompatible {
Unknown(IncompatibleFeatures),
Missing(IncompatibleFeatures),
Incompatible(IncompatibleFeatures),
DirectoryHash(u8),
UnresolvedPath,
}Expand description
Error type used in Ext4Error::Incompatible when the filesystem
cannot be read due to incomplete support in this library.
Variants§
Unknown(IncompatibleFeatures)
One or more unknown bits are set in the incompatible feature flags.
Tuple Fields
§
0: IncompatibleFeaturesThe unknown features.
Missing(IncompatibleFeatures)
One or more required incompatible features are missing.
Tuple Fields
§
0: IncompatibleFeaturesThe missing features.
Incompatible(IncompatibleFeatures)
One or more disallowed incompatible features are present.
Tuple Fields
§
0: IncompatibleFeaturesThe incompatible features.
DirectoryHash(u8)
The directory hash algorithm is not supported.
UnresolvedPath
A path contains symlink or “..” components, but the operation being attempted does not supports this type of path.
Trait Implementations§
source§impl Clone for Incompatible
impl Clone for Incompatible
source§fn clone(&self) -> Incompatible
fn clone(&self) -> Incompatible
Returns a copy of the value. Read more
1.0.0 · 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 Incompatible
impl Debug for Incompatible
source§impl Display for Incompatible
impl Display for Incompatible
source§impl PartialEq for Incompatible
impl PartialEq for Incompatible
source§fn eq(&self, other: &Incompatible) -> bool
fn eq(&self, other: &Incompatible) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for Incompatible
impl StructuralPartialEq for Incompatible
Auto Trait Implementations§
impl Freeze for Incompatible
impl RefUnwindSafe for Incompatible
impl Send for Incompatible
impl Sync for Incompatible
impl Unpin for Incompatible
impl UnwindSafe for Incompatible
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)