pub struct TaskState {
pub context_gathered: bool,
pub action_taken: bool,
pub verified: bool,
pub context_response: Option<AgentResponse>,
pub action_response: Option<AgentResponse>,
pub verification_response: Option<AgentResponse>,
}Fields§
§context_gathered: bool§action_taken: bool§verified: bool§context_response: Option<AgentResponse>§action_response: Option<AgentResponse>§verification_response: Option<AgentResponse>Trait Implementations§
Auto Trait Implementations§
impl Freeze for TaskState
impl RefUnwindSafe for TaskState
impl Send for TaskState
impl Sync for TaskState
impl Unpin for TaskState
impl UnwindSafe for TaskState
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