pub struct Finished {
pub response: AgentResponse,
}Expand description
Agent has finished execution with a final response.
Terminal state — no further transitions are possible.
Access the final response via response() or into_response().
Fields§
§response: AgentResponseThe final agent response.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Finished
impl RefUnwindSafe for Finished
impl Send for Finished
impl Sync for Finished
impl Unpin for Finished
impl UnsafeUnpin for Finished
impl UnwindSafe for Finished
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