pub struct ZeroCopyStats {
pub bytes_processed: u64,
pub elements_found: u64,
pub string_cache_hit_rate: f64,
pub parse_time: Duration,
pub throughput_mb_per_sec: f64,
pub memory_used_bytes: usize,
}
Fields§
§bytes_processed: u64
§elements_found: u64
§string_cache_hit_rate: f64
§parse_time: Duration
§throughput_mb_per_sec: f64
§memory_used_bytes: usize
Trait Implementations§
Source§impl Clone for ZeroCopyStats
impl Clone for ZeroCopyStats
Source§fn clone(&self) -> ZeroCopyStats
fn clone(&self) -> ZeroCopyStats
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 ZeroCopyStats
impl RefUnwindSafe for ZeroCopyStats
impl Send for ZeroCopyStats
impl Sync for ZeroCopyStats
impl Unpin for ZeroCopyStats
impl UnwindSafe for ZeroCopyStats
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