Skip to main content

Error

Enum Error 

Source
pub enum Error {
Show 20 variants Io(Error), BadMagic { found: u16, expected: u16, }, BadChecksum { what: &'static str, }, UnsupportedIncompat(u32), UnsupportedRoCompat(u32), NotFound, NotADirectory, IsADirectory, AlreadyExists, DirectoryNotEmpty, ReadOnly, NameTooLong, NoSpaceLeftOnDevice, InvalidArgument(&'static str), InvalidInode(u32), InvalidBlock(u64), OutOfBounds, CorruptExtentTree(&'static str), CorruptDirEntry(&'static str), Corrupt(&'static str),
}

Variants§

§

Io(Error)

Underlying device I/O failure.

§

BadMagic

Magic number mismatch — not an ext4 filesystem.

Fields

§found: u16
§expected: u16
§

BadChecksum

On-disk structure failed checksum validation.

Fields

§what: &'static str
§

UnsupportedIncompat(u32)

Filesystem uses an INCOMPAT feature we don’t implement.

§

UnsupportedRoCompat(u32)

Filesystem uses a RO_COMPAT feature we don’t implement (read-only mount required anyway).

§

NotFound

Path component or inode not found.

§

NotADirectory

Path resolution hit a non-directory mid-walk.

§

IsADirectory

Operation refused because the target is a directory and the syscall only operates on regular files (POSIX EISDIR — used by unlink(2), truncate(2), etc).

§

AlreadyExists

Target already exists (POSIX EEXIST — used by create(2), mkdir(2), rename(2) when no-replace is requested).

§

DirectoryNotEmpty

Directory must be empty (POSIX ENOTEMPTY — used by rmdir(2), rename(2) replacing a non-empty dir).

§

ReadOnly

Write attempted on a device opened read-only (POSIX EROFS).

§

NameTooLong

Path component longer than EXT4_NAME_LEN (255 bytes) — POSIX ENAMETOOLONG.

§

NoSpaceLeftOnDevice

Container (xattr in-inode region, xattr block, etc.) has no free space for the requested entry — POSIX ENOSPC.

§

InvalidArgument(&'static str)

Caller passed a malformed argument or attempted a semantically invalid mutation (POSIX EINVAL — e.g. truncate-grow, moving a dir into its own subtree, operating on a legacy non-EXTENTS inode).

§

InvalidInode(u32)

Inode number is invalid (0, > total inodes, etc.).

§

InvalidBlock(u64)

Block number is invalid (> total blocks).

§

OutOfBounds

Read/write past end of file.

§

CorruptExtentTree(&'static str)

Extent tree structure is corrupt.

§

CorruptDirEntry(&'static str)

Directory entry corrupt (rec_len out of range, name too long, etc.).

§

Corrupt(&'static str)

Generic spec-violation error.

Implementations§

Source§

impl Error

Source

pub fn to_errno(&self) -> i32

Map an error to a POSIX errno suitable for the C ABI / FSKit.

Values are macOS POSIX errno numbers (which match Linux for every code used here — the divergence only starts at ENOTSUP).

Trait Implementations§

Source§

impl Debug for Error

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Error

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for Error

1.30.0 · Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl From<Error> for Error

Source§

fn from(e: Error) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl !UnwindSafe for Error

§

impl Freeze for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnsafeUnpin for Error

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.