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