pub struct OParEmitStats {
pub bytes_emitted: usize,
pub items_emitted: usize,
pub errors: usize,
pub warnings: usize,
pub elapsed_ms: u64,
}Expand description
Emission statistics for OPar.
Fields§
§bytes_emitted: usize§items_emitted: usize§errors: usize§warnings: usize§elapsed_ms: u64Implementations§
Trait Implementations§
Source§impl Clone for OParEmitStats
impl Clone for OParEmitStats
Source§fn clone(&self) -> OParEmitStats
fn clone(&self) -> OParEmitStats
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 OParEmitStats
impl Debug for OParEmitStats
Source§impl Default for OParEmitStats
impl Default for OParEmitStats
Source§fn default() -> OParEmitStats
fn default() -> OParEmitStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OParEmitStats
impl RefUnwindSafe for OParEmitStats
impl Send for OParEmitStats
impl Sync for OParEmitStats
impl Unpin for OParEmitStats
impl UnsafeUnpin for OParEmitStats
impl UnwindSafe for OParEmitStats
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