pub struct GraphDiagnostics {
pub generation: u64,
pub edge_count: usize,
pub adjacency_entries: usize,
pub pair_entries: usize,
pub invalid_mutations: u64,
pub uniqueness_rejections: u64,
}Fields§
§generation: u64§edge_count: usize§adjacency_entries: usize§pair_entries: usize§invalid_mutations: u64§uniqueness_rejections: u64Trait Implementations§
Source§impl Clone for GraphDiagnostics
impl Clone for GraphDiagnostics
Source§fn clone(&self) -> GraphDiagnostics
fn clone(&self) -> GraphDiagnostics
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 GraphDiagnostics
impl Debug for GraphDiagnostics
Source§impl Default for GraphDiagnostics
impl Default for GraphDiagnostics
Source§fn default() -> GraphDiagnostics
fn default() -> GraphDiagnostics
Returns the “default value” for a type. Read more
impl Eq for GraphDiagnostics
Source§impl PartialEq for GraphDiagnostics
impl PartialEq for GraphDiagnostics
impl StructuralPartialEq for GraphDiagnostics
Auto Trait Implementations§
impl Freeze for GraphDiagnostics
impl RefUnwindSafe for GraphDiagnostics
impl Send for GraphDiagnostics
impl Sync for GraphDiagnostics
impl Unpin for GraphDiagnostics
impl UnsafeUnpin for GraphDiagnostics
impl UnwindSafe for GraphDiagnostics
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
impl<T> CellValue for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more