pub enum ConstraintEffectType {
PushedStart,
CappedLate,
Pinned,
Redundant,
}Expand description
Type of effect a constraint has on scheduling
Variants§
PushedStart
Constraint pushed ES/EF forward (floor constraint active)
CappedLate
Constraint capped LS/LF (ceiling constraint active)
Pinned
Constraint pinned task to specific date (MustStartOn/MustFinishOn)
Redundant
Constraint was redundant (dependencies already more restrictive)
Trait Implementations§
Source§impl Clone for ConstraintEffectType
impl Clone for ConstraintEffectType
Source§fn clone(&self) -> ConstraintEffectType
fn clone(&self) -> ConstraintEffectType
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 ConstraintEffectType
impl Debug for ConstraintEffectType
Source§impl PartialEq for ConstraintEffectType
impl PartialEq for ConstraintEffectType
impl StructuralPartialEq for ConstraintEffectType
Auto Trait Implementations§
impl Freeze for ConstraintEffectType
impl RefUnwindSafe for ConstraintEffectType
impl Send for ConstraintEffectType
impl Sync for ConstraintEffectType
impl Unpin for ConstraintEffectType
impl UnwindSafe for ConstraintEffectType
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