Struct task_fs::TaskDir

source ·
pub struct TaskDir {
    pub name: String,
    /* private fields */
}
Expand description

A lazily computed directory that holds files and subdirectories related to information about this Task

Fields§

§name: String

The name of the directory

Implementations§

source§

impl TaskDir

source

pub fn new( name: String, parent: &DirRef, task_id: usize, taskref: WeakTaskRef ) -> Result<TaskDir, &'static str>

Creates a new directory and passes a pointer to the new directory created as output

Trait Implementations§

source§

impl Directory for TaskDir

source§

fn list(&self) -> Vec<String>

Returns a string listing all the children in the directory

source§

fn insert( &mut self, _node: FileOrDir ) -> Result<Option<FileOrDir>, &'static str>

Inserts the given new file or directory into this directory. If an existing node has the same name, that node is replaced and returned. Read more
source§

fn get(&self, child_name: &str) -> Option<FileOrDir>

Gets either the file or directory in this Directory on its name.
source§

fn remove(&mut self, _: &FileOrDir) -> Option<FileOrDir>

Removes a file or directory from this directory and returns it if found. Also, the returned node’s parent directory reference is cleared. Read more
§

fn get_file( &self, name: &str ) -> Option<Arc<Mutex<dyn File + Send, Spin>, Global>>

Like [Directory::get()], but only looks for files matching the given name in this Directory.
§

fn get_dir( &self, name: &str ) -> Option<Arc<Mutex<dyn Directory + Send, Spin>, Global>>

Like [Directory::get()], but only looks for directories matching the given name in this Directory.
source§

impl FsNode for TaskDir

source§

fn get_absolute_path(&self) -> String

Recursively gets the absolute pathname as a String
source§

fn get_name(&self) -> String

Returns the string name of the node
source§

fn get_parent_dir(&self) -> Option<DirRef>

Returns the parent directory of the current node.
source§

fn set_parent_dir(&mut self, _: WeakDirRef)

Sets this node’s parent directory. This is useful for ensuring correctness when inserting or removing files or directories from their parent directory.

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.