pub struct SyncStats {
pub batches_processed: u64,
pub assets_received: u64,
pub assets_quarantined: u64,
pub assets_skipped_duplicate: u64,
pub assets_failed_validation: u64,
pub assets_promoted: u64,
}Expand description
Statistics for a single sync session.
Fields§
§batches_processed: u64§assets_received: u64§assets_quarantined: u64§assets_skipped_duplicate: u64§assets_failed_validation: u64§assets_promoted: u64Trait Implementations§
Source§impl<'de> Deserialize<'de> for SyncStats
impl<'de> Deserialize<'de> for SyncStats
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 SyncStats
impl RefUnwindSafe for SyncStats
impl Send for SyncStats
impl Sync for SyncStats
impl Unpin for SyncStats
impl UnsafeUnpin for SyncStats
impl UnwindSafe for SyncStats
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