pub struct LeafDependency {
pub predecessor: String,
pub dep_type: DependencyType,
pub lag_days: i64,
}Expand description
Dependency declaration from original task
Fields§
§predecessor: StringPredecessor reference (may be qualified or simple)
dep_type: DependencyTypeDependency type
lag_days: i64Lag in working days
Trait Implementations§
Source§impl Clone for LeafDependency
impl Clone for LeafDependency
Source§fn clone(&self) -> LeafDependency
fn clone(&self) -> LeafDependency
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 LeafDependency
impl RefUnwindSafe for LeafDependency
impl Send for LeafDependency
impl Sync for LeafDependency
impl Unpin for LeafDependency
impl UnwindSafe for LeafDependency
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