pub struct TurnOutput {
pub episode_id: Uuid,
pub persona_prompt_contribution: Option<String>,
pub memory_context: MemoryContext,
pub extraction_report: Option<ExtractionReport>,
pub steps_executed: u32,
pub outcome: TurnOutcome,
pub patch_dispatch_results: Vec<PatchDispatchResult>,
}Expand description
Output of a single agent turn orchestrated by crate::AinlRuntime.
Fields§
§episode_id: Uuid§persona_prompt_contribution: Option<String>§memory_context: MemoryContext§extraction_report: Option<ExtractionReport>§steps_executed: u32§outcome: TurnOutcome§patch_dispatch_results: Vec<PatchDispatchResult>Trait Implementations§
Source§impl Clone for TurnOutput
impl Clone for TurnOutput
Source§fn clone(&self) -> TurnOutput
fn clone(&self) -> TurnOutput
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 TurnOutput
impl Debug for TurnOutput
Auto Trait Implementations§
impl Freeze for TurnOutput
impl RefUnwindSafe for TurnOutput
impl Send for TurnOutput
impl Sync for TurnOutput
impl Unpin for TurnOutput
impl UnsafeUnpin for TurnOutput
impl UnwindSafe for TurnOutput
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