#[repr(u8)]pub enum DeltaOperation {
SetField = 1,
DeleteField = 2,
UpdateField = 3,
MergeRecord = 4,
}Expand description
Delta operation types for partial updates
Variants§
SetField = 1
Set field value (0x01)
DeleteField = 2
Delete field (0x02)
UpdateField = 3
Update existing field value (0x03)
MergeRecord = 4
Merge nested record (0x04)
Implementations§
Trait Implementations§
Source§impl Clone for DeltaOperation
impl Clone for DeltaOperation
Source§fn clone(&self) -> DeltaOperation
fn clone(&self) -> DeltaOperation
Returns a duplicate 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 DeltaOperation
impl Debug for DeltaOperation
Source§impl PartialEq for DeltaOperation
impl PartialEq for DeltaOperation
impl Copy for DeltaOperation
impl Eq for DeltaOperation
impl StructuralPartialEq for DeltaOperation
Auto Trait Implementations§
impl Freeze for DeltaOperation
impl RefUnwindSafe for DeltaOperation
impl Send for DeltaOperation
impl Sync for DeltaOperation
impl Unpin for DeltaOperation
impl UnwindSafe for DeltaOperation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.