pub struct GraphStats {
pub paths_analyzed: u64,
pub paths_optimized: u64,
pub avg_depth: f64,
pub max_depth: usize,
}Fields§
§paths_analyzed: u64Total paths analyzed
paths_optimized: u64Total paths optimized
avg_depth: f64Average path depth
max_depth: usizeMaximum path depth found
Trait Implementations§
Source§impl Debug for GraphStats
impl Debug for GraphStats
Source§impl Default for GraphStats
impl Default for GraphStats
Source§fn default() -> GraphStats
fn default() -> GraphStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GraphStats
impl RefUnwindSafe for GraphStats
impl Send for GraphStats
impl Sync for GraphStats
impl Unpin for GraphStats
impl UnsafeUnpin for GraphStats
impl UnwindSafe for GraphStats
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