pub enum PutOutcome {
Inserted,
Existing(IdempotencyRecord),
}Variants§
Inserted
Existing(IdempotencyRecord)
Trait Implementations§
Source§impl Clone for PutOutcome
impl Clone for PutOutcome
Source§fn clone(&self) -> PutOutcome
fn clone(&self) -> PutOutcome
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 PutOutcome
impl Debug for PutOutcome
impl Eq for PutOutcome
Source§impl PartialEq for PutOutcome
impl PartialEq for PutOutcome
impl StructuralPartialEq for PutOutcome
Auto Trait Implementations§
impl Freeze for PutOutcome
impl RefUnwindSafe for PutOutcome
impl Send for PutOutcome
impl Sync for PutOutcome
impl Unpin for PutOutcome
impl UnsafeUnpin for PutOutcome
impl UnwindSafe for PutOutcome
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