pub struct DAGStats {
pub total_nodes: usize,
pub head_count: usize,
pub missing_count: usize,
pub max_depth: usize,
pub avg_branching: f64,
}Expand description
Statistics about a DAG.
Fields§
§total_nodes: usize§head_count: usize§missing_count: usize§max_depth: usize§avg_branching: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for DAGStats
impl RefUnwindSafe for DAGStats
impl Send for DAGStats
impl Sync for DAGStats
impl Unpin for DAGStats
impl UnwindSafe for DAGStats
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