pub struct RunOutput {
pub run_id: String,
pub session_id: String,
pub events: Vec<AgentEvent>,
pub messages: Vec<ChatMessage>,
pub state: AppState,
pub reason: RunStopReason,
pub final_answer: Option<String>,
}Fields§
§run_id: String§session_id: String§events: Vec<AgentEvent>§messages: Vec<ChatMessage>§state: AppState§reason: RunStopReason§final_answer: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunOutput
impl RefUnwindSafe for RunOutput
impl Send for RunOutput
impl Sync for RunOutput
impl Unpin for RunOutput
impl UnwindSafe for RunOutput
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