pub struct TaskResponse {
pub context_response: AgentResponse,
pub action_response: AgentResponse,
pub verification_response: AgentResponse,
pub success: bool,
}Expand description
Response from executing the full agent task
Fields§
§context_response: AgentResponse§action_response: AgentResponse§verification_response: AgentResponse§success: boolTrait Implementations§
Source§impl Clone for TaskResponse
impl Clone for TaskResponse
Source§fn clone(&self) -> TaskResponse
fn clone(&self) -> TaskResponse
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 moreAuto Trait Implementations§
impl Freeze for TaskResponse
impl RefUnwindSafe for TaskResponse
impl Send for TaskResponse
impl Sync for TaskResponse
impl Unpin for TaskResponse
impl UnwindSafe for TaskResponse
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