pub enum RunStepObjectStatus {
InProgress,
Cancelled,
Failed,
Completed,
Expired,
}
Expand description
The status of the run step, which can be either in_progress
, cancelled
, failed
, completed
, or expired
.
Variants§
Trait Implementations§
Source§impl Clone for RunStepObjectStatus
impl Clone for RunStepObjectStatus
Source§fn clone(&self) -> RunStepObjectStatus
fn clone(&self) -> RunStepObjectStatus
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 Debug for RunStepObjectStatus
impl Debug for RunStepObjectStatus
Source§impl<'de> Deserialize<'de> for RunStepObjectStatus
impl<'de> Deserialize<'de> for RunStepObjectStatus
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 RunStepObjectStatus
impl PartialEq for RunStepObjectStatus
Source§impl Serialize for RunStepObjectStatus
impl Serialize for RunStepObjectStatus
impl Copy for RunStepObjectStatus
impl StructuralPartialEq for RunStepObjectStatus
Auto Trait Implementations§
impl Freeze for RunStepObjectStatus
impl RefUnwindSafe for RunStepObjectStatus
impl Send for RunStepObjectStatus
impl Sync for RunStepObjectStatus
impl Unpin for RunStepObjectStatus
impl UnwindSafe for RunStepObjectStatus
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