pub struct ExportStats {
pub events_exported: u64,
pub bytes_written: u64,
pub events_skipped: u64,
}Expand description
Statistics from a completed export operation.
Fields§
§events_exported: u64Number of events written.
bytes_written: u64Total bytes written.
events_skipped: u64Number of events skipped by filters.
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
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 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