pub struct ValidationStats {
pub total_nodes: usize,
pub total_edges: usize,
pub start_nodes: usize,
pub end_nodes: usize,
pub max_depth: usize,
pub node_type_counts: HashMap<String, usize>,
}Expand description
Validation statistics
Fields§
§total_nodes: usize§total_edges: usize§start_nodes: usize§end_nodes: usize§max_depth: usize§node_type_counts: HashMap<String, usize>Trait Implementations§
Source§impl Clone for ValidationStats
impl Clone for ValidationStats
Source§fn clone(&self) -> ValidationStats
fn clone(&self) -> ValidationStats
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 moreAuto Trait Implementations§
impl Freeze for ValidationStats
impl RefUnwindSafe for ValidationStats
impl Send for ValidationStats
impl Sync for ValidationStats
impl Unpin for ValidationStats
impl UnwindSafe for ValidationStats
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