ExtFileSystem

Struct ExtFileSystem 

Source
pub struct ExtFileSystem {
    pub number_of_inodes: u32,
    pub last_mount_path: ByteString,
    pub last_mount_time: DateTime,
    pub last_written_time: DateTime,
    /* private fields */
}
Expand description

Extended File System (ext).

Fields§

§number_of_inodes: u32

Number of inodes.

§last_mount_path: ByteString

Last mount path.

§last_mount_time: DateTime

Last mount time.

§last_written_time: DateTime

Last written time.

Implementations§

Source§

impl ExtFileSystem

Source

pub fn new() -> Self

Creates a new file system.

Source

pub fn get_format_version(&self) -> u8

Retrieves the format version.

Source

pub fn get_compatible_feature_flags(&self) -> u32

Retrieves the compatible feature flags.

Source

pub fn get_incompatible_feature_flags(&self) -> u32

Retrieves the incompatible feature flags.

Source

pub fn get_read_only_compatible_feature_flags(&self) -> u32

Retrieves the read-only compatible feature flags.

Source

pub fn get_volume_label(&self) -> &ByteString

Retrieves the volume label.

Source

pub fn get_file_entry_by_identifier( &self, inode_number: u32, ) -> Result<ExtFileEntry, ErrorTrace>

Retrieves the file entry for a specific identifier (inode number).

Source

pub fn get_file_entry_by_path( &self, path: &ExtPath, ) -> Result<Option<ExtFileEntry>, ErrorTrace>

Retrieves the file entry for a specific path.

Source

pub fn get_root_directory(&self) -> Result<Option<ExtFileEntry>, ErrorTrace>

Retrieves the root directory (file entry).

Source

pub fn read_data_stream( &mut self, data_stream: &DataStreamReference, ) -> Result<(), ErrorTrace>

Reads a file system from a data stream.

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<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, 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.