Struct storage_client_interface::s3::StorageClient
source · pub struct StorageClient { /* private fields */ }Implementations§
Trait Implementations§
source§impl Clone for StorageClient
impl Clone for StorageClient
source§fn clone(&self) -> StorageClient
fn clone(&self) -> StorageClient
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for StorageClient
impl Debug for StorageClient
source§impl StorageClientInterface for StorageClient
impl StorageClientInterface for StorageClient
fn get_object<'life0, 'async_trait>( &'life0 self, key: String ) -> Pin<Box<dyn Future<Output = Result<Option<String>, StorageClientError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
fn put_object<'life0, 'async_trait>( &'life0 self, key: String, body: String ) -> Pin<Box<dyn Future<Output = Result<(), StorageClientError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
fn delete_object<'life0, 'async_trait>( &'life0 self, key: String ) -> Pin<Box<dyn Future<Output = Result<(), StorageClientError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
Auto Trait Implementations§
impl !RefUnwindSafe for StorageClient
impl Send for StorageClient
impl Sync for StorageClient
impl Unpin for StorageClient
impl !UnwindSafe for StorageClient
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