pub enum RunObjectStatus {
Queued,
InProgress,
RequiresAction,
Cancelling,
Cancelled,
Failed,
Completed,
Incomplete,
Expired,
}
Expand description
The status of the run, which can be either queued
, in_progress
, requires_action
, cancelling
, cancelled
, failed
, completed
, incomplete
, or expired
.
Variants§
Queued
queued
InProgress
in_progress
RequiresAction
requires_action
Cancelling
cancelling
Cancelled
cancelled
Failed
failed
Completed
completed
Incomplete
incomplete
Expired
expired
Trait Implementations§
Source§impl Clone for RunObjectStatus
impl Clone for RunObjectStatus
Source§fn clone(&self) -> RunObjectStatus
fn clone(&self) -> RunObjectStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RunObjectStatus
impl Debug for RunObjectStatus
Source§impl<'de> Deserialize<'de> for RunObjectStatus
impl<'de> Deserialize<'de> for RunObjectStatus
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 RunObjectStatus
impl PartialEq for RunObjectStatus
Source§impl Serialize for RunObjectStatus
impl Serialize for RunObjectStatus
impl Copy for RunObjectStatus
impl StructuralPartialEq for RunObjectStatus
Auto Trait Implementations§
impl Freeze for RunObjectStatus
impl RefUnwindSafe for RunObjectStatus
impl Send for RunObjectStatus
impl Sync for RunObjectStatus
impl Unpin for RunObjectStatus
impl UnwindSafe for RunObjectStatus
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