Skip to main content

NtfsError

Enum NtfsError 

Source
pub enum NtfsError {
Show 26 variants InvalidBootSignature { found: u16, }, InvalidOemId, InvalidSectorSize { found: u16, }, InvalidSectorsPerCluster { found: u8, }, InvalidVolumeGeometry, InvalidMftMagic, InvalidIndexMagic, InvalidFixup, FixupMismatch { expected: u16, found: u16, }, InvalidRecordSize, MftRecordOutOfBounds { index: u64, }, StaleFileReference { index: u64, expected: u16, found: u16, }, AttributeNotFound { attr_type: u32, }, InvalidAttribute, InvalidDataRun, InvalidFileName, InvalidUpcaseTable, InvalidIndexEntry, NotAFile, NotADirectory, EntryNotFound, InvalidPath, UnsupportedCompression, UnsupportedEncryption, UnexpectedEndOfData, Io(Error),
}
Expand description

Errors that can occur when working with NTFS filesystems.

Variants§

§

InvalidBootSignature

Invalid boot sector signature (expected 0xAA55)

Fields

§found: u16

The signature that was found

§

InvalidOemId

Invalid OEM ID in boot sector (expected “NTFS “)

§

InvalidSectorSize

Invalid logical sector size in the boot sector

Fields

§found: u16

Sector size that was found

§

InvalidSectorsPerCluster

Invalid sectors-per-cluster value in the boot sector

Fields

§found: u8

Cluster factor that was found

§

InvalidVolumeGeometry

Invalid volume extent or MFT location in the boot sector

§

InvalidMftMagic

Invalid MFT record magic (expected “FILE”)

§

InvalidIndexMagic

Invalid index record magic (expected “INDX”)

§

InvalidFixup

Invalid or corrupt update sequence (fixup) array

§

FixupMismatch

Update sequence entry does not match the expected value

Fields

§expected: u16

Expected update sequence number

§found: u16

Value found at sector boundary

§

InvalidRecordSize

Invalid MFT record size in boot sector

§

MftRecordOutOfBounds

MFT record index is beyond the MFT data extent

Fields

§index: u64

The record index that was requested

§

StaleFileReference

A file reference points to a reused MFT record

Fields

§index: u64

Referenced MFT record

§expected: u16

Sequence number stored in the file reference

§found: u16

Current sequence number in the MFT record

§

AttributeNotFound

Required attribute was not found in the MFT record

Fields

§attr_type: u32

The attribute type that was expected

§

InvalidAttribute

Malformed attribute header or value

§

InvalidDataRun

Malformed non-resident attribute data run

§

InvalidFileName

Could not decode a UTF-16LE filename

§

InvalidUpcaseTable

The $UpCase system file is missing or malformed

§

InvalidIndexEntry

Malformed index entry

§

NotAFile

Entry is not a regular file

§

NotADirectory

Entry is not a directory

§

EntryNotFound

Entry not found in directory

§

InvalidPath

Path is invalid (empty or malformed)

§

UnsupportedCompression

Compressed data streams are not supported

§

UnsupportedEncryption

Encrypted data streams are not supported

§

UnexpectedEndOfData

Data read went past the end of the available data runs

§

Io(Error)

I/O error from the underlying storage

Trait Implementations§

Source§

impl Debug for NtfsError

Source§

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

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

impl Display for NtfsError

Source§

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

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

impl Error for NtfsError

Available on crate feature std only.
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<E: IoError> From<Error<E>> for NtfsError

Source§

fn from(e: Error<E>) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

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> MaybePod for T

Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

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 = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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.