Struct json_patch::MoveOperation
source · Expand description
JSON Patch ‘move’ operation representation
Fields§
§from: String
JSON-Pointer value RFC6901 that references a location to move value from.
path: String
JSON-Pointer value RFC6901 that references a location within the target document where the operation is performed.
Trait Implementations§
source§impl Clone for MoveOperation
impl Clone for MoveOperation
source§fn clone(&self) -> MoveOperation
fn clone(&self) -> MoveOperation
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 MoveOperation
impl Debug for MoveOperation
source§impl<'de> Deserialize<'de> for MoveOperation
impl<'de> Deserialize<'de> for MoveOperation
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<MoveOperation> for MoveOperation
impl PartialEq<MoveOperation> for MoveOperation
source§fn eq(&self, other: &MoveOperation) -> bool
fn eq(&self, other: &MoveOperation) -> bool
source§impl Serialize for MoveOperation
impl Serialize for MoveOperation
impl Eq for MoveOperation
impl StructuralEq for MoveOperation
impl StructuralPartialEq for MoveOperation
Auto Trait Implementations§
impl RefUnwindSafe for MoveOperation
impl Send for MoveOperation
impl Sync for MoveOperation
impl Unpin for MoveOperation
impl UnwindSafe for MoveOperation
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.