pub enum FunctionShellCallStatus {
InProgress,
Completed,
Incomplete,
}Available on crate feature
response-types only.Expand description
Status values reported for function shell tool calls.
Variants§
Trait Implementations§
Source§impl Clone for FunctionShellCallStatus
impl Clone for FunctionShellCallStatus
Source§fn clone(&self) -> FunctionShellCallStatus
fn clone(&self) -> FunctionShellCallStatus
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 moreimpl Copy for FunctionShellCallStatus
Source§impl Debug for FunctionShellCallStatus
impl Debug for FunctionShellCallStatus
Source§impl<'de> Deserialize<'de> for FunctionShellCallStatus
impl<'de> Deserialize<'de> for FunctionShellCallStatus
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 From<FunctionShellCallStatus> for FunctionShellCallItemStatus
impl From<FunctionShellCallStatus> for FunctionShellCallItemStatus
Source§fn from(status: FunctionShellCallStatus) -> Self
fn from(status: FunctionShellCallStatus) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FunctionShellCallStatus
impl PartialEq for FunctionShellCallStatus
Source§fn eq(&self, other: &FunctionShellCallStatus) -> bool
fn eq(&self, other: &FunctionShellCallStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FunctionShellCallStatus
impl Serialize for FunctionShellCallStatus
impl StructuralPartialEq for FunctionShellCallStatus
Auto Trait Implementations§
impl Freeze for FunctionShellCallStatus
impl RefUnwindSafe for FunctionShellCallStatus
impl Send for FunctionShellCallStatus
impl Sync for FunctionShellCallStatus
impl Unpin for FunctionShellCallStatus
impl UnsafeUnpin for FunctionShellCallStatus
impl UnwindSafe for FunctionShellCallStatus
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