pub struct DemosDrive { /* private fields */ }
Expand description
A read-only drive that exposes a bunch of read-only demo files.
Trait Implementations§
Source§impl Drive for DemosDrive
impl Drive for DemosDrive
Source§fn delete<'life0, 'life1, 'async_trait>(
&'life0 mut self,
_name: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<()>> + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn delete<'life0, 'life1, 'async_trait>(
&'life0 mut self,
_name: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<()>> + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Deletes the program given by
name
.Source§fn enumerate<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<DriveFiles>> + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn enumerate<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<DriveFiles>> + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Returns the entries in the store and their metadata.
Source§fn get<'life0, 'life1, 'async_trait>(
&'life0 self,
name: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<String>> + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn get<'life0, 'life1, 'async_trait>(
&'life0 self,
name: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<String>> + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Loads the contents of the program given by
name
.Source§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
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: '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
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Saves the in-memory program given by
content
into name
.Source§fn get_acls<'life0, 'life1, 'async_trait>(
&'life0 self,
_name: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<FileAcls, Error>> + '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, Error>> + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
Gets the ACLs of the file
_name
.Source§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<(), Error>> + '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<(), Error>> + '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
.Auto Trait Implementations§
impl Freeze for DemosDrive
impl RefUnwindSafe for DemosDrive
impl Send for DemosDrive
impl Sync for DemosDrive
impl Unpin for DemosDrive
impl UnwindSafe for DemosDrive
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more