pub enum DynamicToolItemStatus {
InProgress,
Completed,
Failed,
}Expand description
Lifecycle status of a dynamic tool item shown in thread detail and event payloads.
Variants§
Trait Implementations§
Source§impl Clone for DynamicToolItemStatus
impl Clone for DynamicToolItemStatus
Source§fn clone(&self) -> DynamicToolItemStatus
fn clone(&self) -> DynamicToolItemStatus
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 DynamicToolItemStatus
Source§impl Debug for DynamicToolItemStatus
impl Debug for DynamicToolItemStatus
Source§impl<'de> Deserialize<'de> for DynamicToolItemStatus
impl<'de> Deserialize<'de> for DynamicToolItemStatus
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
impl Eq for DynamicToolItemStatus
Source§impl PartialEq for DynamicToolItemStatus
impl PartialEq for DynamicToolItemStatus
Source§fn eq(&self, other: &DynamicToolItemStatus) -> bool
fn eq(&self, other: &DynamicToolItemStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DynamicToolItemStatus
impl Serialize for DynamicToolItemStatus
impl StructuralPartialEq for DynamicToolItemStatus
Auto Trait Implementations§
impl Freeze for DynamicToolItemStatus
impl RefUnwindSafe for DynamicToolItemStatus
impl Send for DynamicToolItemStatus
impl Sync for DynamicToolItemStatus
impl Unpin for DynamicToolItemStatus
impl UnsafeUnpin for DynamicToolItemStatus
impl UnwindSafe for DynamicToolItemStatus
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