pub struct GraphSummary {
pub total_nodes: usize,
pub total_edges: usize,
pub todo: usize,
pub in_progress: usize,
pub done: usize,
pub blocked: usize,
pub cancelled: usize,
pub failed: usize,
pub needs_resolution: usize,
pub ready: usize,
}Fields§
§total_nodes: usize§total_edges: usize§todo: usize§in_progress: usize§done: usize§blocked: usize§cancelled: usize§failed: usize§needs_resolution: usize§ready: usizeTrait Implementations§
Source§impl Debug for GraphSummary
impl Debug for GraphSummary
Source§impl Default for GraphSummary
impl Default for GraphSummary
Source§fn default() -> GraphSummary
fn default() -> GraphSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GraphSummary
impl RefUnwindSafe for GraphSummary
impl Send for GraphSummary
impl Sync for GraphSummary
impl Unpin for GraphSummary
impl UnsafeUnpin for GraphSummary
impl UnwindSafe for GraphSummary
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