pub struct CriticalPathResult {
pub path: Vec<String>,
pub length: usize,
pub is_blocked: bool,
}Expand description
Result of critical path analysis.
Fields§
§path: Vec<String>Task IDs in the critical path (from root to leaf, following dependencies).
length: usizeNumber of tasks in the path.
is_blocked: boolWhether any task in the path is blocking (not done/rejected).
Trait Implementations§
Source§impl Clone for CriticalPathResult
impl Clone for CriticalPathResult
Source§fn clone(&self) -> CriticalPathResult
fn clone(&self) -> CriticalPathResult
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 moreAuto Trait Implementations§
impl Freeze for CriticalPathResult
impl RefUnwindSafe for CriticalPathResult
impl Send for CriticalPathResult
impl Sync for CriticalPathResult
impl Unpin for CriticalPathResult
impl UnsafeUnpin for CriticalPathResult
impl UnwindSafe for CriticalPathResult
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