pub enum ToolCallStatus {
Pending,
Running,
Succeeded,
Failed,
Cancelled,
TimedOut,
Rejected,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ToolCallStatus
impl Clone for ToolCallStatus
Source§fn clone(&self) -> ToolCallStatus
fn clone(&self) -> ToolCallStatus
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 ToolCallStatus
impl Debug for ToolCallStatus
Source§impl Display for ToolCallStatus
impl Display for ToolCallStatus
Source§impl FromStr for ToolCallStatus
impl FromStr for ToolCallStatus
Source§impl Hash for ToolCallStatus
impl Hash for ToolCallStatus
Source§impl Ord for ToolCallStatus
impl Ord for ToolCallStatus
Source§fn cmp(&self, other: &ToolCallStatus) -> Ordering
fn cmp(&self, other: &ToolCallStatus) -> 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 ToolCallStatus
impl PartialEq for ToolCallStatus
Source§fn eq(&self, other: &ToolCallStatus) -> bool
fn eq(&self, other: &ToolCallStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ToolCallStatus
impl PartialOrd for ToolCallStatus
impl Copy for ToolCallStatus
impl Eq for ToolCallStatus
impl StructuralPartialEq for ToolCallStatus
Auto Trait Implementations§
impl Freeze for ToolCallStatus
impl RefUnwindSafe for ToolCallStatus
impl Send for ToolCallStatus
impl Sync for ToolCallStatus
impl Unpin for ToolCallStatus
impl UnsafeUnpin for ToolCallStatus
impl UnwindSafe for ToolCallStatus
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