pub enum AgentResultStatus {
Success,
Error,
Timeout,
MaxIterationsReached,
}Expand description
Status of an agent result.
Variants§
Success
The query was successful.
Error
An error occurred.
Timeout
The query timed out.
MaxIterationsReached
Maximum iterations were reached.
Trait Implementations§
Source§impl Clone for AgentResultStatus
impl Clone for AgentResultStatus
Source§fn clone(&self) -> AgentResultStatus
fn clone(&self) -> AgentResultStatus
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 moreSource§impl Debug for AgentResultStatus
impl Debug for AgentResultStatus
Source§impl Display for AgentResultStatus
impl Display for AgentResultStatus
Source§impl PartialEq for AgentResultStatus
impl PartialEq for AgentResultStatus
impl Copy for AgentResultStatus
impl Eq for AgentResultStatus
impl StructuralPartialEq for AgentResultStatus
Auto Trait Implementations§
impl Freeze for AgentResultStatus
impl RefUnwindSafe for AgentResultStatus
impl Send for AgentResultStatus
impl Sync for AgentResultStatus
impl Unpin for AgentResultStatus
impl UnsafeUnpin for AgentResultStatus
impl UnwindSafe for AgentResultStatus
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