pub struct ApplyGraphResult {
pub nodes_created: usize,
pub nodes_updated: usize,
pub edges_created: usize,
pub nodes_merged: usize,
}Expand description
Result of applying a batch of graph operations.
Fields§
§nodes_created: usize§nodes_updated: usize§edges_created: usize§nodes_merged: usizeTrait Implementations§
Source§impl Clone for ApplyGraphResult
impl Clone for ApplyGraphResult
Source§fn clone(&self) -> ApplyGraphResult
fn clone(&self) -> ApplyGraphResult
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 ApplyGraphResult
impl Debug for ApplyGraphResult
Source§impl Default for ApplyGraphResult
impl Default for ApplyGraphResult
Source§fn default() -> ApplyGraphResult
fn default() -> ApplyGraphResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ApplyGraphResult
impl RefUnwindSafe for ApplyGraphResult
impl Send for ApplyGraphResult
impl Sync for ApplyGraphResult
impl Unpin for ApplyGraphResult
impl UnsafeUnpin for ApplyGraphResult
impl UnwindSafe for ApplyGraphResult
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