pub struct PatchOutcome {
pub graph: Graph,
pub inserted: usize,
pub deleted: usize,
}Expand description
Outcome of evaluating a PATCH request.
Fields§
§graph: GraphGraph after the patch was applied.
inserted: usizeNumber of triples inserted.
deleted: usizeNumber of triples deleted.
Trait Implementations§
Source§impl Clone for PatchOutcome
impl Clone for PatchOutcome
Source§fn clone(&self) -> PatchOutcome
fn clone(&self) -> PatchOutcome
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 PatchOutcome
impl Debug for PatchOutcome
Source§impl PartialEq for PatchOutcome
impl PartialEq for PatchOutcome
Source§fn eq(&self, other: &PatchOutcome) -> bool
fn eq(&self, other: &PatchOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PatchOutcome
impl StructuralPartialEq for PatchOutcome
Auto Trait Implementations§
impl Freeze for PatchOutcome
impl RefUnwindSafe for PatchOutcome
impl Send for PatchOutcome
impl Sync for PatchOutcome
impl Unpin for PatchOutcome
impl UnsafeUnpin for PatchOutcome
impl UnwindSafe for PatchOutcome
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