#[non_exhaustive]pub enum RunListParamsStatus {
Queued,
InProgress,
Completed,
Canceled,
Failed,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for RunListParamsStatus
impl Clone for RunListParamsStatus
Source§fn clone(&self) -> RunListParamsStatus
fn clone(&self) -> RunListParamsStatus
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 moreSource§impl Debug for RunListParamsStatus
impl Debug for RunListParamsStatus
Source§impl<'de> Deserialize<'de> for RunListParamsStatus
impl<'de> Deserialize<'de> for RunListParamsStatus
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 RunListParamsStatus
Source§impl PartialEq for RunListParamsStatus
impl PartialEq for RunListParamsStatus
Source§impl Serialize for RunListParamsStatus
impl Serialize for RunListParamsStatus
impl StructuralPartialEq for RunListParamsStatus
Auto Trait Implementations§
impl Freeze for RunListParamsStatus
impl RefUnwindSafe for RunListParamsStatus
impl Send for RunListParamsStatus
impl Sync for RunListParamsStatus
impl Unpin for RunListParamsStatus
impl UnsafeUnpin for RunListParamsStatus
impl UnwindSafe for RunListParamsStatus
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