Struct task_fs::TaskFs

source ·
pub struct TaskFs {}
Expand description

The top level directory that includes a dynamically-generated list of all Tasks, each comprising a TaskDir. This directory exists in the root directory.

Trait Implementations§

source§

impl Directory for TaskFs

source§

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

This function adds a newly created fs node (the argument) to the TASKS directory’s children map

source§

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

Returns a string listing all the children in the directory

source§

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

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

fn remove(&mut self, _node: &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 TaskFs

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