#[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 copy 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<'de> Deserialize<'de> for TaskStatusType
impl<'de> Deserialize<'de> for TaskStatusType
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TaskStatusType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TaskStatusType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromStr for TaskStatusType
impl FromStr for TaskStatusType
Source§type Err = ParseError
type Err = ParseError
The associated error which can be returned from parsing.
Source§fn from_str(s: &str) -> Result<TaskStatusType, <TaskStatusType as FromStr>::Err>
fn from_str(s: &str) -> Result<TaskStatusType, <TaskStatusType as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moreSource§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 Serialize for TaskStatusType
impl Serialize for TaskStatusType
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl TryFrom<&str> for TaskStatusType
impl TryFrom<&str> for TaskStatusType
Source§type Error = ParseError
type Error = ParseError
The type returned in the event of a conversion error.
Source§fn try_from(
s: &str,
) -> Result<TaskStatusType, <TaskStatusType as TryFrom<&str>>::Error>
fn try_from( s: &str, ) -> Result<TaskStatusType, <TaskStatusType as TryFrom<&str>>::Error>
Performs the conversion.
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.