pub struct BatchCompletionSummary {
pub job_id: String,
pub operation: String,
pub resource_key: String,
pub total: usize,
pub succeeded: usize,
pub failed: usize,
pub skipped: usize,
pub total_duration_ms: u64,
pub avg_duration_ms: u64,
}Expand description
Summary of a completed batch job.
Fields§
§job_id: String§operation: String§resource_key: String§total: usize§succeeded: usize§failed: usize§skipped: usize§total_duration_ms: u64§avg_duration_ms: u64Trait Implementations§
Source§impl Clone for BatchCompletionSummary
impl Clone for BatchCompletionSummary
Source§fn clone(&self) -> BatchCompletionSummary
fn clone(&self) -> BatchCompletionSummary
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 BatchCompletionSummary
impl Debug for BatchCompletionSummary
Source§impl<'de> Deserialize<'de> for BatchCompletionSummary
impl<'de> Deserialize<'de> for BatchCompletionSummary
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
Auto Trait Implementations§
impl Freeze for BatchCompletionSummary
impl RefUnwindSafe for BatchCompletionSummary
impl Send for BatchCompletionSummary
impl Sync for BatchCompletionSummary
impl Unpin for BatchCompletionSummary
impl UnsafeUnpin for BatchCompletionSummary
impl UnwindSafe for BatchCompletionSummary
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