Struct ext4::SuperBlock [] [src]

pub struct SuperBlock<R> { /* fields omitted */ }

The critical core of the filesystem.

Methods

impl<R> SuperBlock<R> where
    R: Read + Seek
[src]

[src]

Open a filesystem, and load its superblock.

[src]

[src]

Load a filesystem entry by inode number.

[src]

Load the root node of the filesystem (typically /).

[src]

Visit every entry in the filesystem in an arbitrary order. The closure should return true if it wants walking to continue. The method returns true if the closure always returned true.

[src]

Parse a path, and find the directory entry it represents. Note that "/foo/../bar" will be treated literally, not resolved to "/bar" then looked up.

[src]

Read the data from an inode. You might not want to call this on thigns that aren't regular files.

[src]

Load extra metadata about some types of entries.

Trait Implementations

impl<R: Debug> Debug for SuperBlock<R>
[src]

[src]

Formats the value using the given formatter.