Enum json_patch::PatchOperation
source · pub enum PatchOperation {
Add(AddOperation),
Remove(RemoveOperation),
Replace(ReplaceOperation),
Move(MoveOperation),
Copy(CopyOperation),
Test(TestOperation),
}
Expand description
JSON Patch single patch operation
Variants§
Add(AddOperation)
‘add’ operation
Remove(RemoveOperation)
‘remove’ operation
Replace(ReplaceOperation)
‘replace’ operation
Move(MoveOperation)
‘move’ operation
Copy(CopyOperation)
‘copy’ operation
Test(TestOperation)
‘test’ operation
Trait Implementations§
source§impl Clone for PatchOperation
impl Clone for PatchOperation
source§fn clone(&self) -> PatchOperation
fn clone(&self) -> PatchOperation
Returns a copy 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 PatchOperation
impl Debug for PatchOperation
source§impl<'de> Deserialize<'de> for PatchOperation
impl<'de> Deserialize<'de> for PatchOperation
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 PartialEq<PatchOperation> for PatchOperation
impl PartialEq<PatchOperation> for PatchOperation
source§fn eq(&self, other: &PatchOperation) -> bool
fn eq(&self, other: &PatchOperation) -> bool
source§impl Serialize for PatchOperation
impl Serialize for PatchOperation
impl Eq for PatchOperation
impl StructuralEq for PatchOperation
impl StructuralPartialEq for PatchOperation
Auto Trait Implementations§
impl RefUnwindSafe for PatchOperation
impl Send for PatchOperation
impl Sync for PatchOperation
impl Unpin for PatchOperation
impl UnwindSafe for PatchOperation
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.