pub struct PlannerOutput {
pub batches: Vec<Batch>,
pub total_issues: u32,
pub parallel_capacity: u32,
}Expand description
Structured output from the planner agent (legacy batch format).
Fields§
§batches: Vec<Batch>§total_issues: u32§parallel_capacity: u32Trait Implementations§
Source§impl Debug for PlannerOutput
impl Debug for PlannerOutput
Source§impl<'de> Deserialize<'de> for PlannerOutput
impl<'de> Deserialize<'de> for PlannerOutput
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
Auto Trait Implementations§
impl Freeze for PlannerOutput
impl RefUnwindSafe for PlannerOutput
impl Send for PlannerOutput
impl Sync for PlannerOutput
impl Unpin for PlannerOutput
impl UnsafeUnpin for PlannerOutput
impl UnwindSafe for PlannerOutput
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