Skip to main content

FileBody

Enum FileBody 

Source
#[non_exhaustive]
pub enum FileBody { Regular { content: Vec<u8>, is_native_executable: bool, }, Directory { files: HashMap<Rc<UnixStr>, Rc<RefCell<Inode>>>, }, Fifo { content: VecDeque<u8>, readers: usize, writers: usize, pending_open_wakers: WakerSet, pending_read_wakers: WakerSet, pending_write_wakers: WakerSet, }, Symlink { target: PathBuf, }, Terminal { content: Vec<u8>, }, }
Expand description

Filetype-specific content of a file

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Regular

Regular file

Fields

§content: Vec<u8>

File content

§is_native_executable: bool

Whether this file is a native binary that can be exec’ed

§

Directory

Directory

Fields

§files: HashMap<Rc<UnixStr>, Rc<RefCell<Inode>>>

Files contained in this directory

The keys of the hashmap are filenames without any parent directory components. The hashmap does not contain “.” or “..”.

§

Fifo

Named pipe

Fields

§content: VecDeque<u8>

Content of the pipe

§readers: usize

Number of open file descriptions reading from this pipe

§writers: usize

Number of open file descriptions writing to this pipe

§pending_open_wakers: WakerSet

Wakers of tasks waiting to open the pipe for reading or writing

A reader and a writer of a pipe are opened synchronously: when a task attempts to open the pipe for reading, it will wait until another task opens the pipe for writing, and vice versa. This field is used to store the wakers of tasks waiting to open the pipe, so that they can be notified when a new reader or writer is opened.

§pending_read_wakers: WakerSet

Wakers of tasks waiting to read from the pipe

When a task attempts to read from an empty pipe, it will wait until another task writes to the pipe. This field is used to store the wakers of such tasks, so that they can be notified when new content is written.

§pending_write_wakers: WakerSet

Wakers of tasks waiting to write to the pipe

When a task attempts to write to a full pipe, it will wait until another task reads from the pipe. This field is used to store the wakers of such tasks, so that they can be notified when content is read and space is available for writing.

Symbolic link

Fields

§target: PathBuf

Path to the file referenced by this symlink

§

Terminal

Terminal device

This is a dummy device that works like a regular file.

Fields

§content: Vec<u8>

Virtual file content

Implementations§

Source§

impl FileBody

Source

pub fn new<T: Into<Vec<u8>>>(bytes: T) -> Self

Creates a regular file body with the given content.

Source

pub const fn type(&self) -> FileType

Returns the type of the file.

Source

pub fn size(&self) -> usize

Returns the size of the file.

Source

pub fn is_seekable(&self) -> bool

Returns whether the file supports seeking.

Trait Implementations§

Source§

impl Clone for FileBody

Source§

fn clone(&self) -> FileBody

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 FileBody

Source§

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

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

impl Default for FileBody

The default file body is an empty regular file.

Source§

fn default() -> Self

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

impl PartialEq for FileBody

Source§

fn eq(&self, __other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
Source§

fn ne(&self, __other: &Self) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl TryFrom<&FileBody> for VirtualDir<IntoIter<Rc<UnixStr>>>

Creates a VirtualDir that yields entries of a directory.

This function will fail if the given file body is not a directory.

Source§

type Error = Errno

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

fn try_from(file: &FileBody) -> Result<Self, Errno>

Performs the conversion.
Source§

impl Eq for FileBody

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

Source§

fn __clone_box(&self, _: Private) -> *mut ()

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

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
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.