pub struct ConstraintEffect {
pub constraint: TaskConstraint,
pub effect: ConstraintEffectType,
pub description: String,
}Expand description
Effect of a temporal constraint on task scheduling
Fields§
§constraint: TaskConstraintThe constraint that was applied
effect: ConstraintEffectTypeWhat effect the constraint had
description: StringHuman-readable description of the effect
Trait Implementations§
Source§impl Clone for ConstraintEffect
impl Clone for ConstraintEffect
Source§fn clone(&self) -> ConstraintEffect
fn clone(&self) -> ConstraintEffect
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 ConstraintEffect
impl RefUnwindSafe for ConstraintEffect
impl Send for ConstraintEffect
impl Sync for ConstraintEffect
impl Unpin for ConstraintEffect
impl UnwindSafe for ConstraintEffect
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