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