pub struct GraphInspection {
pub graph_version: GraphVersion,
pub entity_count: usize,
pub evidence_count: usize,
pub relation_count: usize,
pub claim_count: usize,
pub event_count: usize,
pub mutation_count: usize,
pub code_file_count: usize,
pub code_symbol_count: usize,
pub code_reference_count: usize,
pub code_chunk_count: usize,
pub code_parse_status_counts: CodeParseStatusCounts,
}Expand description
Aggregated graph status for diagnostics.
Fields§
§graph_version: GraphVersion§entity_count: usize§evidence_count: usize§relation_count: usize§claim_count: usize§event_count: usize§mutation_count: usize§code_file_count: usize§code_symbol_count: usize§code_reference_count: usize§code_chunk_count: usize§code_parse_status_counts: CodeParseStatusCountsTrait Implementations§
Source§impl Clone for GraphInspection
impl Clone for GraphInspection
Source§fn clone(&self) -> GraphInspection
fn clone(&self) -> GraphInspection
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 GraphInspection
impl Debug for GraphInspection
Source§impl Default for GraphInspection
impl Default for GraphInspection
Source§impl<'de> Deserialize<'de> for GraphInspection
impl<'de> Deserialize<'de> for GraphInspection
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
Source§impl PartialEq for GraphInspection
impl PartialEq for GraphInspection
Source§fn eq(&self, other: &GraphInspection) -> bool
fn eq(&self, other: &GraphInspection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GraphInspection
impl Serialize for GraphInspection
impl Eq for GraphInspection
impl StructuralPartialEq for GraphInspection
Auto Trait Implementations§
impl Freeze for GraphInspection
impl RefUnwindSafe for GraphInspection
impl Send for GraphInspection
impl Sync for GraphInspection
impl Unpin for GraphInspection
impl UnsafeUnpin for GraphInspection
impl UnwindSafe for GraphInspection
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,
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§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.