pub enum LocalShellToolCallOutputStatus {
InProgress,
Completed,
Incomplete,
}
Expand description
The status of the item. One of in_progress
, completed
, or incomplete
.
Variants§
Trait Implementations§
Source§impl Clone for LocalShellToolCallOutputStatus
impl Clone for LocalShellToolCallOutputStatus
Source§fn clone(&self) -> LocalShellToolCallOutputStatus
fn clone(&self) -> LocalShellToolCallOutputStatus
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<'de> Deserialize<'de> for LocalShellToolCallOutputStatus
impl<'de> Deserialize<'de> for LocalShellToolCallOutputStatus
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 PartialEq for LocalShellToolCallOutputStatus
impl PartialEq for LocalShellToolCallOutputStatus
Source§fn eq(&self, other: &LocalShellToolCallOutputStatus) -> bool
fn eq(&self, other: &LocalShellToolCallOutputStatus) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for LocalShellToolCallOutputStatus
impl StructuralPartialEq for LocalShellToolCallOutputStatus
Auto Trait Implementations§
impl Freeze for LocalShellToolCallOutputStatus
impl RefUnwindSafe for LocalShellToolCallOutputStatus
impl Send for LocalShellToolCallOutputStatus
impl Sync for LocalShellToolCallOutputStatus
impl Unpin for LocalShellToolCallOutputStatus
impl UnwindSafe for LocalShellToolCallOutputStatus
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