pub struct DirectedGraphStats {
pub reachable_count: usize,
pub edge_count: usize,
pub mean_out_degree: f64,
pub largest_component_fraction: f64,
pub component_entropy: f64,
}Fields§
§reachable_count: usize§edge_count: usize§mean_out_degree: f64§largest_component_fraction: f64§component_entropy: f64Trait Implementations§
Source§impl Clone for DirectedGraphStats
impl Clone for DirectedGraphStats
Source§fn clone(&self) -> DirectedGraphStats
fn clone(&self) -> DirectedGraphStats
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 DirectedGraphStats
impl Debug for DirectedGraphStats
Source§impl Default for DirectedGraphStats
impl Default for DirectedGraphStats
Source§fn default() -> DirectedGraphStats
fn default() -> DirectedGraphStats
Returns the “default value” for a type. Read more
impl Copy for DirectedGraphStats
Auto Trait Implementations§
impl Freeze for DirectedGraphStats
impl RefUnwindSafe for DirectedGraphStats
impl Send for DirectedGraphStats
impl Sync for DirectedGraphStats
impl Unpin for DirectedGraphStats
impl UnsafeUnpin for DirectedGraphStats
impl UnwindSafe for DirectedGraphStats
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