pub enum DeltaOperationType {
Add,
Update,
Tag,
Remove,
}Expand description
Type of delta operation.
Variants§
Trait Implementations§
Source§impl Clone for DeltaOperationType
impl Clone for DeltaOperationType
Source§fn clone(&self) -> DeltaOperationType
fn clone(&self) -> DeltaOperationType
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 DeltaOperationType
impl Debug for DeltaOperationType
Source§impl<'de> Deserialize<'de> for DeltaOperationType
impl<'de> Deserialize<'de> for DeltaOperationType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for DeltaOperationType
impl Display for DeltaOperationType
impl Eq for DeltaOperationType
Source§impl PartialEq for DeltaOperationType
impl PartialEq for DeltaOperationType
Source§impl Serialize for DeltaOperationType
impl Serialize for DeltaOperationType
impl StructuralPartialEq for DeltaOperationType
Auto Trait Implementations§
impl Freeze for DeltaOperationType
impl RefUnwindSafe for DeltaOperationType
impl Send for DeltaOperationType
impl Sync for DeltaOperationType
impl Unpin for DeltaOperationType
impl UnsafeUnpin for DeltaOperationType
impl UnwindSafe for DeltaOperationType
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