pub struct RunLogPatch {
pub ops: Vec<JsonPatchOp>,
}Expand description
Patch to the run log.
Fields§
§ops: Vec<JsonPatchOp>List of JSONPatch operations.
Implementations§
Source§impl RunLogPatch
impl RunLogPatch
Sourcepub fn new(ops: Vec<JsonPatchOp>) -> Self
pub fn new(ops: Vec<JsonPatchOp>) -> Self
Create a new run log patch.
Sourcepub fn from_op(op: JsonPatchOp) -> Self
pub fn from_op(op: JsonPatchOp) -> Self
Create a patch from a single operation.
Sourcepub fn from_ops(ops: impl IntoIterator<Item = JsonPatchOp>) -> Self
pub fn from_ops(ops: impl IntoIterator<Item = JsonPatchOp>) -> Self
Create a patch from multiple operations.
Trait Implementations§
Source§impl Clone for RunLogPatch
impl Clone for RunLogPatch
Source§fn clone(&self) -> RunLogPatch
fn clone(&self) -> RunLogPatch
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 RunLogPatch
impl Debug for RunLogPatch
Source§impl<'de> Deserialize<'de> for RunLogPatch
impl<'de> Deserialize<'de> for RunLogPatch
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 RunLogPatch
impl Display for RunLogPatch
Auto Trait Implementations§
impl Freeze for RunLogPatch
impl RefUnwindSafe for RunLogPatch
impl Send for RunLogPatch
impl Sync for RunLogPatch
impl Unpin for RunLogPatch
impl UnwindSafe for RunLogPatch
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.