Struct cloud_file::DynObjectStore
source · pub struct DynObjectStore(pub Box<dyn ObjectStore>);
Expand description
Wraps Box<dyn ObjectStore>
for easier usage. An ObjectStore
, from the
powerful object_store
crate, represents a cloud service.
Tuple Fields§
§0: Box<dyn ObjectStore>
Trait Implementations§
source§impl Debug for DynObjectStore
impl Debug for DynObjectStore
Auto Trait Implementations§
impl !RefUnwindSafe for DynObjectStore
impl Send for DynObjectStore
impl Sync for DynObjectStore
impl Unpin for DynObjectStore
impl !UnwindSafe for DynObjectStore
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