pub struct ExportStats {
pub total_exports: usize,
pub successful_exports: usize,
pub failed_exports: usize,
pub total_data_exported_bytes: u64,
pub exports_by_type: HashMap<ExportType, usize>,
pub exports_by_format: HashMap<ExportFormat, usize>,
pub last_export: Option<DateTime<Utc>>,
}Fields§
§total_exports: usize§successful_exports: usize§failed_exports: usize§total_data_exported_bytes: u64§exports_by_type: HashMap<ExportType, usize>§exports_by_format: HashMap<ExportFormat, usize>§last_export: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for ExportStats
impl Clone for ExportStats
Source§fn clone(&self) -> ExportStats
fn clone(&self) -> ExportStats
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 ExportStats
impl Debug for ExportStats
Source§impl<'de> Deserialize<'de> for ExportStats
impl<'de> Deserialize<'de> for ExportStats
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 ExportStats
impl RefUnwindSafe for ExportStats
impl Send for ExportStats
impl Sync for ExportStats
impl Unpin for ExportStats
impl UnwindSafe for ExportStats
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