pub struct FastParsingStats {
pub throughput_mbps: f64,
pub elements_per_second: f64,
pub total_bytes: u64,
pub total_elements: usize,
pub elapsed: Duration,
pub peak_memory_mb: f64,
pub avg_element_size: f64,
}Expand description
Performance metrics
Fields§
§throughput_mbps: f64§elements_per_second: f64§total_bytes: u64§total_elements: usize§elapsed: Duration§peak_memory_mb: f64§avg_element_size: f64Trait Implementations§
Source§impl Clone for FastParsingStats
impl Clone for FastParsingStats
Source§fn clone(&self) -> FastParsingStats
fn clone(&self) -> FastParsingStats
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 moreAuto Trait Implementations§
impl Freeze for FastParsingStats
impl RefUnwindSafe for FastParsingStats
impl Send for FastParsingStats
impl Sync for FastParsingStats
impl Unpin for FastParsingStats
impl UnwindSafe for FastParsingStats
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