pub struct CriticalPath {
pub path: Vec<String>,
pub length: usize,
pub depth_sum: usize,
}Fields§
§path: Vec<String>§length: usize§depth_sum: usizeTrait Implementations§
Source§impl Clone for CriticalPath
impl Clone for CriticalPath
Source§fn clone(&self) -> CriticalPath
fn clone(&self) -> CriticalPath
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 CriticalPath
impl Debug for CriticalPath
Auto Trait Implementations§
impl Freeze for CriticalPath
impl RefUnwindSafe for CriticalPath
impl Send for CriticalPath
impl Sync for CriticalPath
impl Unpin for CriticalPath
impl UnsafeUnpin for CriticalPath
impl UnwindSafe for CriticalPath
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