pub struct DiagnosticSummary {Show 25 fields
pub node_count: usize,
pub raw_edge_count: usize,
pub non_object_edges: usize,
pub missing_endpoint_edges: usize,
pub dangling_endpoint_edges: usize,
pub self_loop_edges: usize,
pub valid_candidate_edges: usize,
pub exact_duplicate_edges: usize,
pub directed_unique_endpoint_pairs: usize,
pub directed_same_endpoint_collapsed_edges: usize,
pub undirected_unique_endpoint_pairs: usize,
pub undirected_same_endpoint_collapsed_edges: usize,
pub same_endpoint_group_count: usize,
pub relation_variant_groups: usize,
pub source_file_variant_groups: usize,
pub source_location_variant_groups: usize,
pub context_variant_groups: usize,
pub post_build_graph_type: String,
pub post_build_node_count: Option<usize>,
pub post_build_edge_count: Option<usize>,
pub post_build_error: String,
pub producer_suppression: SuppressionResult,
pub examples: Vec<EdgeGroupExample>,
pub input_path: Option<String>,
pub effective_directed: Option<bool>,
}Fields§
§node_count: usize§raw_edge_count: usize§non_object_edges: usize§missing_endpoint_edges: usize§dangling_endpoint_edges: usize§self_loop_edges: usize§valid_candidate_edges: usize§exact_duplicate_edges: usize§directed_unique_endpoint_pairs: usize§directed_same_endpoint_collapsed_edges: usize§undirected_unique_endpoint_pairs: usize§undirected_same_endpoint_collapsed_edges: usize§same_endpoint_group_count: usize§relation_variant_groups: usize§source_file_variant_groups: usize§source_location_variant_groups: usize§context_variant_groups: usize§post_build_graph_type: String§post_build_node_count: Option<usize>§post_build_edge_count: Option<usize>§post_build_error: String§producer_suppression: SuppressionResult§examples: Vec<EdgeGroupExample>§input_path: Option<String>§effective_directed: Option<bool>Trait Implementations§
Source§impl Clone for DiagnosticSummary
impl Clone for DiagnosticSummary
Source§fn clone(&self) -> DiagnosticSummary
fn clone(&self) -> DiagnosticSummary
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 moreAuto Trait Implementations§
impl Freeze for DiagnosticSummary
impl RefUnwindSafe for DiagnosticSummary
impl Send for DiagnosticSummary
impl Sync for DiagnosticSummary
impl Unpin for DiagnosticSummary
impl UnsafeUnpin for DiagnosticSummary
impl UnwindSafe for DiagnosticSummary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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