pub struct SummaryBatchJobRow {
pub status: String,
pub processed_sessions: u32,
pub total_sessions: u32,
pub failed_sessions: u32,
pub message: Option<String>,
pub started_at: Option<String>,
pub finished_at: Option<String>,
}Expand description
Summary batch generation progress/status snapshot.
Fields§
§status: String§processed_sessions: u32§total_sessions: u32§failed_sessions: u32§message: Option<String>§started_at: Option<String>§finished_at: Option<String>Trait Implementations§
Source§impl Clone for SummaryBatchJobRow
impl Clone for SummaryBatchJobRow
Source§fn clone(&self) -> SummaryBatchJobRow
fn clone(&self) -> SummaryBatchJobRow
Returns a duplicate of the value. Read more
1.0.0 · 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 SummaryBatchJobRow
impl Debug for SummaryBatchJobRow
Source§impl PartialEq for SummaryBatchJobRow
impl PartialEq for SummaryBatchJobRow
impl Eq for SummaryBatchJobRow
impl StructuralPartialEq for SummaryBatchJobRow
Auto Trait Implementations§
impl Freeze for SummaryBatchJobRow
impl RefUnwindSafe for SummaryBatchJobRow
impl Send for SummaryBatchJobRow
impl Sync for SummaryBatchJobRow
impl Unpin for SummaryBatchJobRow
impl UnsafeUnpin for SummaryBatchJobRow
impl UnwindSafe for SummaryBatchJobRow
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