#[non_exhaustive]pub enum TaskStatusType {
Show 26 variants
Received,
Pending,
Scheduled,
Rejected,
Denied,
MovedVis,
Bumped,
Moved,
Cancelled,
SystemError,
QueuedPass,
Configured,
Downlinking,
Recording,
CompletedPass,
DataCloud,
Processing,
ReadyCustom,
ProcessedCustom,
ErrorCustom,
Completed,
CompletedError,
PushedToCustomer,
ErrorPushToCustomer,
Invoiced,
Paid,
}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.
Received
Pending
Scheduled
Rejected
Denied
MovedVis
Bumped
Moved
Cancelled
SystemError
QueuedPass
Configured
Downlinking
Recording
CompletedPass
DataCloud
Processing
ReadyCustom
ProcessedCustom
ErrorCustom
Completed
CompletedError
PushedToCustomer
ErrorPushToCustomer
Invoiced
Paid
Trait Implementations§
Source§impl AsRef<str> for TaskStatusType
impl AsRef<str> for TaskStatusType
Source§impl Clone for TaskStatusType
impl Clone for TaskStatusType
Source§fn clone(&self) -> TaskStatusType
fn clone(&self) -> TaskStatusType
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 TaskStatusType
impl Debug for TaskStatusType
Source§impl FromStr for TaskStatusType
impl FromStr for TaskStatusType
Source§impl Hash for TaskStatusType
impl Hash for TaskStatusType
Source§impl Ord for TaskStatusType
impl Ord for TaskStatusType
Source§fn cmp(&self, other: &TaskStatusType) -> Ordering
fn cmp(&self, other: &TaskStatusType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TaskStatusType
impl PartialEq for TaskStatusType
Source§impl PartialOrd for TaskStatusType
impl PartialOrd for TaskStatusType
Source§impl TryFrom<&str> for TaskStatusType
impl TryFrom<&str> for TaskStatusType
impl Copy for TaskStatusType
impl Eq for TaskStatusType
impl StructuralPartialEq for TaskStatusType
Auto Trait Implementations§
impl Freeze for TaskStatusType
impl RefUnwindSafe for TaskStatusType
impl Send for TaskStatusType
impl Sync for TaskStatusType
impl Unpin for TaskStatusType
impl UnwindSafe for TaskStatusType
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