pub struct BatchReport {
pub span: BatchSpan,
pub path: BatchPath,
pub pack_ms: f64,
pub execute_ms: f64,
pub readback_ms: f64,
pub post_ms: f64,
pub bytes_in: usize,
pub bytes_out: usize,
pub error: Option<String>,
}Fields§
§span: BatchSpan§path: BatchPath§pack_ms: f64§execute_ms: f64§readback_ms: f64§post_ms: f64§bytes_in: usize§bytes_out: usize§error: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for BatchReport
impl Clone for BatchReport
Source§fn clone(&self) -> BatchReport
fn clone(&self) -> BatchReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BatchReport
impl Debug for BatchReport
Source§impl PartialEq for BatchReport
impl PartialEq for BatchReport
Source§fn eq(&self, other: &BatchReport) -> bool
fn eq(&self, other: &BatchReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BatchReport
Auto Trait Implementations§
impl Freeze for BatchReport
impl RefUnwindSafe for BatchReport
impl Send for BatchReport
impl Sync for BatchReport
impl Unpin for BatchReport
impl UnsafeUnpin for BatchReport
impl UnwindSafe for BatchReport
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