pub enum IngestionJobStatus {
Queued,
Running,
Completed,
Failed,
Cancelled,
}Variants§
Trait Implementations§
Source§impl Clone for IngestionJobStatus
impl Clone for IngestionJobStatus
Source§fn clone(&self) -> IngestionJobStatus
fn clone(&self) -> IngestionJobStatus
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 moreimpl Copy for IngestionJobStatus
Source§impl Debug for IngestionJobStatus
impl Debug for IngestionJobStatus
Source§impl<'de> Deserialize<'de> for IngestionJobStatus
impl<'de> Deserialize<'de> for IngestionJobStatus
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 IngestionJobStatus
Source§impl PartialEq for IngestionJobStatus
impl PartialEq for IngestionJobStatus
Source§fn eq(&self, other: &IngestionJobStatus) -> bool
fn eq(&self, other: &IngestionJobStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IngestionJobStatus
Auto Trait Implementations§
impl Freeze for IngestionJobStatus
impl RefUnwindSafe for IngestionJobStatus
impl Send for IngestionJobStatus
impl Sync for IngestionJobStatus
impl Unpin for IngestionJobStatus
impl UnsafeUnpin for IngestionJobStatus
impl UnwindSafe for IngestionJobStatus
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