pub enum AgentStatus {
Idle,
Planning,
Running,
WaitingForTool,
WaitingForUser,
Succeeded,
Failed,
Cancelled,
Paused,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AgentStatus
impl Clone for AgentStatus
Source§fn clone(&self) -> AgentStatus
fn clone(&self) -> AgentStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AgentStatus
impl Debug for AgentStatus
Source§impl Display for AgentStatus
impl Display for AgentStatus
Source§impl FromStr for AgentStatus
impl FromStr for AgentStatus
Source§impl Hash for AgentStatus
impl Hash for AgentStatus
Source§impl Ord for AgentStatus
impl Ord for AgentStatus
Source§fn cmp(&self, other: &AgentStatus) -> Ordering
fn cmp(&self, other: &AgentStatus) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AgentStatus
impl PartialEq for AgentStatus
Source§fn eq(&self, other: &AgentStatus) -> bool
fn eq(&self, other: &AgentStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AgentStatus
impl PartialOrd for AgentStatus
impl Copy for AgentStatus
impl Eq for AgentStatus
impl StructuralPartialEq for AgentStatus
Auto Trait Implementations§
impl Freeze for AgentStatus
impl RefUnwindSafe for AgentStatus
impl Send for AgentStatus
impl Sync for AgentStatus
impl Unpin for AgentStatus
impl UnsafeUnpin for AgentStatus
impl UnwindSafe for AgentStatus
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