pub struct ExportStats {
pub exported: usize,
pub skipped: usize,
pub failed: usize,
pub flush_operations: usize,
pub last_flush_size: usize,
}Expand description
导出统计
Fields§
§exported: usize§skipped: usize§failed: usize§flush_operations: usize§last_flush_size: usizeImplementations§
Source§impl ExportStats
impl ExportStats
pub fn new() -> Self
pub fn record_success(&mut self)
pub fn record_success_batch(&mut self, count: usize)
pub fn total(&self) -> usize
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 Default for ExportStats
impl Default for ExportStats
Source§fn default() -> ExportStats
fn default() -> ExportStats
Returns the “default value” for a type. 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 UnsafeUnpin 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