Struct json_patch::CopyOperation
source · pub struct CopyOperation {
pub from: Pointer,
pub path: Pointer,
}
Expand description
JSON Patch ‘copy’ operation representation
Fields§
§from: Pointer
JSON-Pointer value RFC6901 that references a location to copy value from.
path: Pointer
JSON-Pointer value RFC6901 that references a location within the target document where the operation is performed.
Trait Implementations§
source§impl Clone for CopyOperation
impl Clone for CopyOperation
source§fn clone(&self) -> CopyOperation
fn clone(&self) -> CopyOperation
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 CopyOperation
impl Debug for CopyOperation
source§impl Default for CopyOperation
impl Default for CopyOperation
source§fn default() -> CopyOperation
fn default() -> CopyOperation
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CopyOperation
impl<'de> Deserialize<'de> for CopyOperation
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 CopyOperation
impl Display for CopyOperation
source§impl PartialEq for CopyOperation
impl PartialEq for CopyOperation
source§fn eq(&self, other: &CopyOperation) -> bool
fn eq(&self, other: &CopyOperation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for CopyOperation
impl Serialize for CopyOperation
impl Eq for CopyOperation
impl StructuralPartialEq for CopyOperation
Auto Trait Implementations§
impl Freeze for CopyOperation
impl RefUnwindSafe for CopyOperation
impl Send for CopyOperation
impl Sync for CopyOperation
impl Unpin for CopyOperation
impl UnwindSafe for CopyOperation
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