pub enum GatewayBatchStatus {
Queued,
InProgress,
Completed,
Cancelled,
}Expand description
Lifecycle status of a GatewayBatch.
Variants§
Queued
The batch has been accepted but not yet started.
InProgress
The batch is currently being processed.
Completed
The batch finished processing.
Cancelled
The batch was cancelled before completion.
Implementations§
Trait Implementations§
Source§impl Clone for GatewayBatchStatus
impl Clone for GatewayBatchStatus
Source§fn clone(&self) -> GatewayBatchStatus
fn clone(&self) -> GatewayBatchStatus
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 GatewayBatchStatus
impl Debug for GatewayBatchStatus
impl Eq for GatewayBatchStatus
Source§impl PartialEq for GatewayBatchStatus
impl PartialEq for GatewayBatchStatus
impl StructuralPartialEq for GatewayBatchStatus
Auto Trait Implementations§
impl Freeze for GatewayBatchStatus
impl RefUnwindSafe for GatewayBatchStatus
impl Send for GatewayBatchStatus
impl Sync for GatewayBatchStatus
impl Unpin for GatewayBatchStatus
impl UnsafeUnpin for GatewayBatchStatus
impl UnwindSafe for GatewayBatchStatus
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.