Struct wildland_dfs::encryption::driver::EncryptStorageDriver
source · pub struct EncryptStorageDriver { /* private fields */ }
Implementations§
source§impl EncryptStorageDriver
impl EncryptStorageDriver
pub fn new( inner: Arc<dyn StorageBackend>, encryption_module: Arc<dyn EncryptionModule + Send + Sync> ) -> Self
Trait Implementations§
source§impl StorageBackend for EncryptStorageDriver
impl StorageBackend for EncryptStorageDriver
fn read_dir<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path ) -> Pin<Box<dyn Future<Output = Result<ReadDirResponse, StorageBackendError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,
fn metadata<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path ) -> Pin<Box<dyn Future<Output = Result<MetadataResponse, StorageBackendError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,
fn create_dir<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path ) -> Pin<Box<dyn Future<Output = Result<CreateDirResponse, StorageBackendError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,
fn set_wildland_object_id<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path, new_wildland_object_id: String ) -> Pin<Box<dyn Future<Output = Result<SetWildlandObjectIdResponse, StorageBackendError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,
fn remove_dir<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path, is_recursive: bool ) -> Pin<Box<dyn Future<Output = Result<RemoveDirResponse, StorageBackendError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,
fn path_exists<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path ) -> Pin<Box<dyn Future<Output = Result<bool, StorageBackendError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,
fn remove_file<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path ) -> Pin<Box<dyn Future<Output = Result<RemoveFileResponse, StorageBackendError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,
fn rename<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, oldpath: &'life1 Path, newpath: &'life2 Path ) -> Pin<Box<dyn Future<Output = Result<RenameResponse, StorageBackendError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,
fn set_permissions<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path, permissions: WlPermissions ) -> Pin<Box<dyn Future<Output = Result<SetPermissionsResponse, StorageBackendError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,
fn mount<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<(), StorageBackendError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
source§fn get_space_usage<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<SpaceUsage, StorageBackendError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_space_usage<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<SpaceUsage, StorageBackendError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
Returns amount of (used, total) bytes
fn download<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path, output_stream: Box<dyn OStream>, progress_reporter: Box<dyn ProgressReporter> ) -> Pin<Box<dyn Future<Output = Result<DownloadResponse, StorageBackendError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,
fn upload<'life0, 'life1, 'async_trait>( &'life0 self, path: &'life1 Path, input_stream: Box<dyn IStream>, progress_reporter: Box<dyn ProgressReporter>, creation_time: Option<UnixTimestamp> ) -> Pin<Box<dyn Future<Output = Result<UploadResponse, StorageBackendError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,
fn get_path_by_uuid<'life0, 'async_trait>( &'life0 self, uuid: String ) -> Pin<Box<dyn Future<Output = Result<GetInfoResponse, StorageBackendError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
fn stat_fs<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<FsStat, StorageBackendError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
Auto Trait Implementations§
impl !RefUnwindSafe for EncryptStorageDriver
impl Send for EncryptStorageDriver
impl Sync for EncryptStorageDriver
impl Unpin for EncryptStorageDriver
impl !UnwindSafe for EncryptStorageDriver
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