pub enum DynamicToolCallStatus {
InProgress,
Completed,
Failed,
}Expand description
DynamicToolCallStatus
JSON schema
{
"type": "string",
"enum": [
"inProgress",
"completed",
"failed"
]
}Variants§
Trait Implementations§
Source§impl Clone for DynamicToolCallStatus
impl Clone for DynamicToolCallStatus
Source§fn clone(&self) -> DynamicToolCallStatus
fn clone(&self) -> DynamicToolCallStatus
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 DynamicToolCallStatus
impl Debug for DynamicToolCallStatus
Source§impl<'de> Deserialize<'de> for DynamicToolCallStatus
impl<'de> Deserialize<'de> for DynamicToolCallStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for DynamicToolCallStatus
impl Display for DynamicToolCallStatus
Source§impl FromStr for DynamicToolCallStatus
impl FromStr for DynamicToolCallStatus
Source§impl Hash for DynamicToolCallStatus
impl Hash for DynamicToolCallStatus
Source§impl Ord for DynamicToolCallStatus
impl Ord for DynamicToolCallStatus
Source§fn cmp(&self, other: &DynamicToolCallStatus) -> Ordering
fn cmp(&self, other: &DynamicToolCallStatus) -> 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 DynamicToolCallStatus
impl PartialEq for DynamicToolCallStatus
Source§fn eq(&self, other: &DynamicToolCallStatus) -> bool
fn eq(&self, other: &DynamicToolCallStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for DynamicToolCallStatus
impl PartialOrd for DynamicToolCallStatus
Source§impl Serialize for DynamicToolCallStatus
impl Serialize for DynamicToolCallStatus
Source§impl TryFrom<&String> for DynamicToolCallStatus
impl TryFrom<&String> for DynamicToolCallStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for DynamicToolCallStatus
impl TryFrom<&str> for DynamicToolCallStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for DynamicToolCallStatus
impl TryFrom<String> for DynamicToolCallStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for DynamicToolCallStatus
impl Eq for DynamicToolCallStatus
impl StructuralPartialEq for DynamicToolCallStatus
Auto Trait Implementations§
impl Freeze for DynamicToolCallStatus
impl RefUnwindSafe for DynamicToolCallStatus
impl Send for DynamicToolCallStatus
impl Sync for DynamicToolCallStatus
impl Unpin for DynamicToolCallStatus
impl UnsafeUnpin for DynamicToolCallStatus
impl UnwindSafe for DynamicToolCallStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.