Skip to main content

DirectoryLayout

Struct DirectoryLayout 

Source
pub struct DirectoryLayout {
    pub name: String,
    pub files: Vec<FileLayout>,
    pub subdirs: Vec<DirectoryLayout>,
    pub timestamps: Timestamps,
    pub attributes: u32,
    pub extent: Option<Extent>,
}
Expand description

Directory layout (tree of files).

Represents a complete directory tree with pre-calculated extents for all files. Used for metadata-only writing operations.

Fields§

§name: String

Directory name (empty string for root).

§files: Vec<FileLayout>

Files in this directory.

§subdirs: Vec<DirectoryLayout>

Subdirectories.

§timestamps: Timestamps

Directory timestamps.

§attributes: u32

Filesystem-specific attribute flags.

§extent: Option<Extent>

Extent for the directory entry itself (if applicable).

Implementations§

Source§

impl DirectoryLayout

Source

pub fn new(name: impl Into<String>) -> Self

Creates a new empty directory layout.

Source

pub fn root() -> Self

Creates a root directory layout (empty name).

Source

pub fn add_file(&mut self, file: FileLayout)

Adds a file to this directory.

Source

pub fn add_subdir(&mut self, subdir: DirectoryLayout)

Adds a subdirectory to this directory.

Source

pub fn with_timestamps(self, timestamps: Timestamps) -> Self

Sets the timestamps.

Source

pub fn with_extent(self, extent: Extent) -> Self

Sets the extent for this directory entry.

Source

pub fn file_count(&self) -> usize

Returns the total number of files in this directory (not recursive).

Source

pub fn subdir_count(&self) -> usize

Returns the total number of subdirectories in this directory (not recursive).

Source

pub fn entry_count(&self) -> usize

Returns the total number of entries (files + subdirs).

Source

pub fn iter_files(&self) -> impl Iterator<Item = (&str, &FileLayout)>

Returns an iterator over all files (recursive, depth-first).

Source

pub fn find_file(&self, path: &str) -> Option<&FileLayout>

Finds a file by path (e.g., “docs/readme.txt”).

Source

pub fn find_file_mut(&mut self, path: &str) -> Option<&mut FileLayout>

Finds a mutable file reference by path.

Source

pub fn get_or_create_dir(&mut self, path: &str) -> &mut DirectoryLayout

Finds or creates a subdirectory by path.

Source

pub fn remove_file(&mut self, path: &str) -> Option<FileLayout>

Removes a file by path. Returns the removed file if found.

Trait Implementations§

Source§

impl Clone for DirectoryLayout

Source§

fn clone(&self) -> DirectoryLayout

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for DirectoryLayout

Source§

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

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

impl Default for DirectoryLayout

Source§

fn default() -> DirectoryLayout

Returns the “default value” for a type. Read more

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. 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.