pub struct Explanation {
pub task_id: TaskId,
pub reason: String,
pub constraints_applied: Vec<String>,
pub alternatives_considered: Vec<String>,
pub constraint_effects: Vec<ConstraintEffect>,
pub calendar_impact: Option<CalendarImpact>,
pub related_diagnostics: Vec<DiagnosticCode>,
}Expand description
Explanation of a scheduling decision
Fields§
§task_id: TaskId§reason: String§constraints_applied: Vec<String>§alternatives_considered: Vec<String>§constraint_effects: Vec<ConstraintEffect>Detailed effects of temporal constraints (Phase 4)
calendar_impact: Option<CalendarImpact>Calendar impact on task duration
Diagnostics relevant to this task’s scheduling
Trait Implementations§
Source§impl Clone for Explanation
impl Clone for Explanation
Source§fn clone(&self) -> Explanation
fn clone(&self) -> Explanation
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 Explanation
impl RefUnwindSafe for Explanation
impl Send for Explanation
impl Sync for Explanation
impl Unpin for Explanation
impl UnwindSafe for Explanation
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