pub struct AgentRunResult {
pub run_id: String,
pub response: String,
pub termination: TerminationReason,
pub steps: usize,
}Expand description
Result of running the agent loop.
Fields§
§run_id: String§response: String§termination: TerminationReason§steps: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for AgentRunResult
impl RefUnwindSafe for AgentRunResult
impl Send for AgentRunResult
impl Sync for AgentRunResult
impl Unpin for AgentRunResult
impl UnsafeUnpin for AgentRunResult
impl UnwindSafe for AgentRunResult
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