pub struct ValidationStatistics {
pub node_count: usize,
pub edge_count: usize,
pub cycle_count: usize,
pub orphaned_nodes: usize,
}
Expand description
Validation statistics
Fields§
§node_count: usize
Number of nodes
edge_count: usize
Number of edges
cycle_count: usize
Number of cycles detected
orphaned_nodes: usize
Number of orphaned nodes
Trait Implementations§
Source§impl Clone for ValidationStatistics
impl Clone for ValidationStatistics
Source§fn clone(&self) -> ValidationStatistics
fn clone(&self) -> ValidationStatistics
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 ValidationStatistics
impl Debug for ValidationStatistics
Source§impl Default for ValidationStatistics
impl Default for ValidationStatistics
Source§fn default() -> ValidationStatistics
fn default() -> ValidationStatistics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ValidationStatistics
impl<'de> Deserialize<'de> for ValidationStatistics
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
Auto Trait Implementations§
impl Freeze for ValidationStatistics
impl RefUnwindSafe for ValidationStatistics
impl Send for ValidationStatistics
impl Sync for ValidationStatistics
impl Unpin for ValidationStatistics
impl UnwindSafe for ValidationStatistics
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