pub struct ProjectHealthGraph {
pub node_count: usize,
pub edge_count: usize,
pub density: f64,
pub has_cycles: bool,
pub cycle_count: usize,
pub phase2_ready: bool,
}Fields§
§node_count: usize§edge_count: usize§density: f64§has_cycles: bool§cycle_count: usize§phase2_ready: boolTrait Implementations§
Source§impl Clone for ProjectHealthGraph
impl Clone for ProjectHealthGraph
Source§fn clone(&self) -> ProjectHealthGraph
fn clone(&self) -> ProjectHealthGraph
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 ProjectHealthGraph
impl Debug for ProjectHealthGraph
Auto Trait Implementations§
impl Freeze for ProjectHealthGraph
impl RefUnwindSafe for ProjectHealthGraph
impl Send for ProjectHealthGraph
impl Sync for ProjectHealthGraph
impl Unpin for ProjectHealthGraph
impl UnsafeUnpin for ProjectHealthGraph
impl UnwindSafe for ProjectHealthGraph
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