Struct endbasic_std::storage::InMemoryDrive
source · [−]pub struct InMemoryDrive { /* private fields */ }Expand description
A drive that records all data in memory only.
Trait Implementations
sourceimpl Default for InMemoryDrive
impl Default for InMemoryDrive
sourcefn default() -> InMemoryDrive
fn default() -> InMemoryDrive
Returns the “default value” for a type. Read more
sourceimpl Drive for InMemoryDrive
impl Drive for InMemoryDrive
sourcefn delete<'life0, 'life1, 'async_trait>(
&'life0 mut self,
name: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<()>> + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
fn delete<'life0, 'life1, 'async_trait>(
&'life0 mut self,
name: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<()>> + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
Deletes the program given by name.
sourcefn enumerate<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<DriveFiles>> + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn enumerate<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<DriveFiles>> + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Returns the entries in the store and their metadata.
sourcefn get<'life0, 'life1, 'async_trait>(
&'life0 self,
name: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<String>> + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
fn get<'life0, 'life1, 'async_trait>(
&'life0 self,
name: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<String>> + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
Loads the contents of the program given by name.
sourcefn get_acls<'life0, 'life1, 'async_trait>(
&'life0 self,
name: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<FileAcls>> + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
fn get_acls<'life0, 'life1, 'async_trait>(
&'life0 self,
name: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<FileAcls>> + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
Gets the ACLs of the file _name.
sourcefn put<'life0, 'life1, 'life2, 'async_trait>(
&'life0 mut self,
name: &'life1 str,
content: &'life2 str
) -> Pin<Box<dyn Future<Output = Result<()>> + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Self: 'async_trait,
fn put<'life0, 'life1, 'life2, 'async_trait>(
&'life0 mut self,
name: &'life1 str,
content: &'life2 str
) -> Pin<Box<dyn Future<Output = Result<()>> + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Self: 'async_trait,
Saves the in-memory program given by content into name.
sourcefn update_acls<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 mut self,
name: &'life1 str,
add: &'life2 FileAcls,
remove: &'life3 FileAcls
) -> Pin<Box<dyn Future<Output = Result<()>> + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
Self: 'async_trait,
fn update_acls<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 mut self,
name: &'life1 str,
add: &'life2 FileAcls,
remove: &'life3 FileAcls
) -> Pin<Box<dyn Future<Output = Result<()>> + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
Self: 'async_trait,
Updates the ACLs of the file _name by extending them with the contents of _add and
removing the existing entries listed in _remove. Read more
sourcefn system_path(&self, _name: &str) -> Option<PathBuf>
fn system_path(&self, _name: &str) -> Option<PathBuf>
Gets the system-addressable path of the file _name, if any.
Auto Trait Implementations
impl RefUnwindSafe for InMemoryDrive
impl Send for InMemoryDrive
impl Sync for InMemoryDrive
impl Unpin for InMemoryDrive
impl UnwindSafe for InMemoryDrive
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more