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
Source§fn eq(&self, other: &GatewayBatchStatus) -> bool
fn eq(&self, other: &GatewayBatchStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.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