pub enum IngestStatus {
Succeeded,
Failed,
InProgress,
Unknown(Unknown),
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for IngestStatus
impl Clone for IngestStatus
Source§fn clone(&self) -> IngestStatus
fn clone(&self) -> IngestStatus
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 IngestStatus
impl Debug for IngestStatus
Source§impl<'de> Deserialize<'de> for IngestStatus
impl<'de> Deserialize<'de> for IngestStatus
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 Display for IngestStatus
impl Display for IngestStatus
Source§impl FromPlain for IngestStatus
impl FromPlain for IngestStatus
Source§type Err = ParseEnumError
type Err = ParseEnumError
The error type returned when parsing fails.
Source§fn from_plain(v: &str) -> Result<IngestStatus, ParseEnumError>
fn from_plain(v: &str) -> Result<IngestStatus, ParseEnumError>
Parse a value from its Conjure PLAIN string representation.
Source§impl FromStr for IngestStatus
impl FromStr for IngestStatus
Source§type Err = ParseEnumError
type Err = ParseEnumError
The associated error which can be returned from parsing.
Source§fn from_str(v: &str) -> Result<IngestStatus, ParseEnumError>
fn from_str(v: &str) -> Result<IngestStatus, ParseEnumError>
Parses a string
s
to return a value of this type. Read moreSource§impl Hash for IngestStatus
impl Hash for IngestStatus
Source§impl Ord for IngestStatus
impl Ord for IngestStatus
Source§fn cmp(&self, other: &IngestStatus) -> Ordering
fn cmp(&self, other: &IngestStatus) -> 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 IngestStatus
impl PartialEq for IngestStatus
Source§impl PartialOrd for IngestStatus
impl PartialOrd for IngestStatus
Source§impl Plain for IngestStatus
impl Plain for IngestStatus
Source§impl Serialize for IngestStatus
impl Serialize for IngestStatus
impl Eq for IngestStatus
impl StructuralPartialEq for IngestStatus
Auto Trait Implementations§
impl Freeze for IngestStatus
impl RefUnwindSafe for IngestStatus
impl Send for IngestStatus
impl Sync for IngestStatus
impl Unpin for IngestStatus
impl UnwindSafe for IngestStatus
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.