#[repr(u64)]
pub enum KnownNtfsFileRecordNumber { MFT, MFTMirr, LogFile, Volume, AttrDef, RootDirectory, Bitmap, Boot, BadClus, Secure, UpCase, Extend, }
Expand description

A list of standardized NTFS File Record Numbers.

Most of these files store internal NTFS housekeeping information.

Reference: https://flatcap.github.io/linux-ntfs/ntfs/files/index.html

Variants§

§

MFT

A back-reference to the Master File Table (MFT).

Leads to the same File Record as Ntfs::mft_position.

§

MFTMirr

A mirror copy of the Master File Table (MFT).

§

LogFile

§

Volume

File containing basic filesystem information and the user-defined volume name.

You can easily access that information via Ntfs::volume_info and Ntfs::volume_name.

§

AttrDef

File defining all attributes supported by this NTFS filesystem.

Reference: https://flatcap.github.io/linux-ntfs/ntfs/files/attrdef.html

§

RootDirectory

The root directory of the filesystem.

You can easily access it via Ntfs::root_directory.

§

Bitmap

§

Boot

A back-reference to the boot sector of the filesystem.

§

BadClus

A file consisting of Data Runs to bad cluster ranges.

Reference: https://flatcap.github.io/linux-ntfs/ntfs/files/badclus.html

§

Secure

A list of all Security Descriptors used by this filesystem.

Reference: https://flatcap.github.io/linux-ntfs/ntfs/files/secure.html

§

UpCase

The $UpCase file that contains a table of all uppercase characters for the 65536 characters of the Unicode Basic Multilingual Plane.

NTFS uses this table to perform case-insensitive comparisons.

§

Extend

A directory of further files containing housekeeping information.

Reference: https://flatcap.github.io/linux-ntfs/ntfs/files/extend.html

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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, U> TryFrom<U> for Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.