pub enum ObjectStoreAttempt {
Put(PutObject),
Get(ObjectKey),
Delete(ObjectKey),
}Variants§
Trait Implementations§
Source§impl Clone for ObjectStoreAttempt
impl Clone for ObjectStoreAttempt
Source§fn clone(&self) -> ObjectStoreAttempt
fn clone(&self) -> ObjectStoreAttempt
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ObjectStoreAttempt
impl Debug for ObjectStoreAttempt
impl Eq for ObjectStoreAttempt
Source§impl PartialEq for ObjectStoreAttempt
impl PartialEq for ObjectStoreAttempt
impl StructuralPartialEq for ObjectStoreAttempt
Auto Trait Implementations§
impl Freeze for ObjectStoreAttempt
impl RefUnwindSafe for ObjectStoreAttempt
impl Send for ObjectStoreAttempt
impl Sync for ObjectStoreAttempt
impl Unpin for ObjectStoreAttempt
impl UnsafeUnpin for ObjectStoreAttempt
impl UnwindSafe for ObjectStoreAttempt
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