pub struct GraphMutationReport {
pub creates: usize,
pub merges: usize,
pub deletes: usize,
pub node_upserts: usize,
pub edge_upserts: usize,
pub node_deletes: usize,
pub edge_deletes: usize,
}Fields§
§creates: usize§merges: usize§deletes: usize§node_upserts: usize§edge_upserts: usize§node_deletes: usize§edge_deletes: usizeImplementations§
Source§impl GraphMutationReport
impl GraphMutationReport
pub fn record(&mut self, operation: &GraphMutationPlanOp)
Trait Implementations§
Source§impl Clone for GraphMutationReport
impl Clone for GraphMutationReport
Source§fn clone(&self) -> GraphMutationReport
fn clone(&self) -> GraphMutationReport
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 GraphMutationReport
impl Debug for GraphMutationReport
Source§impl Default for GraphMutationReport
impl Default for GraphMutationReport
Source§fn default() -> GraphMutationReport
fn default() -> GraphMutationReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GraphMutationReport
impl<'de> Deserialize<'de> for GraphMutationReport
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
impl Eq for GraphMutationReport
Source§impl PartialEq for GraphMutationReport
impl PartialEq for GraphMutationReport
Source§fn eq(&self, other: &GraphMutationReport) -> bool
fn eq(&self, other: &GraphMutationReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GraphMutationReport
impl Serialize for GraphMutationReport
impl StructuralPartialEq for GraphMutationReport
Auto Trait Implementations§
impl Freeze for GraphMutationReport
impl RefUnwindSafe for GraphMutationReport
impl Send for GraphMutationReport
impl Sync for GraphMutationReport
impl Unpin for GraphMutationReport
impl UnsafeUnpin for GraphMutationReport
impl UnwindSafe for GraphMutationReport
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.