pub struct DeleteReport {
pub manual_edges: u64,
pub derived_edges: u64,
}Expand description
Counts returned by GraphDb::delete_node.
Fields§
§manual_edges: u64Number of manual (user-inserted) edges removed.
derived_edges: u64Number of derived (rule-owned) edges retracted.
Trait Implementations§
Source§impl Clone for DeleteReport
impl Clone for DeleteReport
Source§fn clone(&self) -> DeleteReport
fn clone(&self) -> DeleteReport
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 DeleteReport
impl Debug for DeleteReport
Source§impl Default for DeleteReport
impl Default for DeleteReport
Source§fn default() -> DeleteReport
fn default() -> DeleteReport
Returns the “default value” for a type. Read more
impl Eq for DeleteReport
Source§impl PartialEq for DeleteReport
impl PartialEq for DeleteReport
impl StructuralPartialEq for DeleteReport
Auto Trait Implementations§
impl Freeze for DeleteReport
impl RefUnwindSafe for DeleteReport
impl Send for DeleteReport
impl Sync for DeleteReport
impl Unpin for DeleteReport
impl UnsafeUnpin for DeleteReport
impl UnwindSafe for DeleteReport
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