pub enum FunctionShellCallStatus {
InProgress,
Completed,
Incomplete,
}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<FunctionShellCallStatus, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FunctionShellCallStatus, <__D as Deserializer<'de>>::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) -> FunctionShellCallItemStatus
fn from(status: FunctionShellCallStatus) -> FunctionShellCallItemStatus
Converts to this type from the input type.
Source§impl PartialEq for FunctionShellCallStatus
impl PartialEq for FunctionShellCallStatus
Source§impl Serialize for FunctionShellCallStatus
impl Serialize for FunctionShellCallStatus
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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