pub struct PlanReport {
pub schema_version: u32,
pub valid: bool,
pub prefer_single_session: bool,
pub attempts: u32,
pub issues: Vec<String>,
pub levels: Vec<Vec<String>>,
pub subtasks: Vec<PlanSubtaskDto>,
}Expand description
The decomposition plan — the SCHEDULER surface, deliberately distinct from
MergeVerdictDto (the gate surface) so a consumer can never mistake a
scheduling hint (levels, prefer_single_session) for a safety verdict.
Fields§
§schema_version: u32§valid: booltrue when a valid plan was produced (parsed + no declared conflicts).
prefer_single_session: boolAdvisory: farming out buys no parallel speedup — prefer a single session.
attempts: u32§issues: Vec<String>Parse / decomposition issues (empty when valid).
levels: Vec<Vec<String>>Scheduled levels (subtask ids) — a SCHEDULING hint, not a verdict.
subtasks: Vec<PlanSubtaskDto>Trait Implementations§
Source§impl Clone for PlanReport
impl Clone for PlanReport
Source§impl Debug for PlanReport
impl Debug for PlanReport
Source§impl<'de> Deserialize<'de> for PlanReport
impl<'de> Deserialize<'de> for PlanReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PlanReport
Source§impl From<&DecomposeResult> for PlanReport
impl From<&DecomposeResult> for PlanReport
Source§fn from(r: &DecomposeResult) -> Self
fn from(r: &DecomposeResult) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PlanReport
impl PartialEq for PlanReport
Source§impl Serialize for PlanReport
impl Serialize for PlanReport
impl StructuralPartialEq for PlanReport
Auto Trait Implementations§
impl Freeze for PlanReport
impl RefUnwindSafe for PlanReport
impl Send for PlanReport
impl Sync for PlanReport
impl Unpin for PlanReport
impl UnsafeUnpin for PlanReport
impl UnwindSafe for PlanReport
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more