pub struct BatchCounts {
pub total: u64,
pub processing: u64,
pub succeeded: u64,
pub errored: u64,
pub canceled: u64,
pub expired: u64,
}Expand description
Aggregate counts on a batch handle.
Fields§
§total: u64§processing: u64§succeeded: u64§errored: u64§canceled: u64§expired: u64Trait Implementations§
Source§impl Clone for BatchCounts
impl Clone for BatchCounts
Source§fn clone(&self) -> BatchCounts
fn clone(&self) -> BatchCounts
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 BatchCounts
impl Debug for BatchCounts
Source§impl Default for BatchCounts
impl Default for BatchCounts
Source§fn default() -> BatchCounts
fn default() -> BatchCounts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchCounts
impl<'de> Deserialize<'de> for BatchCounts
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 PartialEq for BatchCounts
impl PartialEq for BatchCounts
Source§impl Serialize for BatchCounts
impl Serialize for BatchCounts
impl StructuralPartialEq for BatchCounts
Auto Trait Implementations§
impl Freeze for BatchCounts
impl RefUnwindSafe for BatchCounts
impl Send for BatchCounts
impl Sync for BatchCounts
impl Unpin for BatchCounts
impl UnsafeUnpin for BatchCounts
impl UnwindSafe for BatchCounts
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