pub struct Report {
pub count: u64,
pub rate_s: Option<u64>,
pub micros_avg: Option<u64>,
pub micros_95: Option<u64>,
pub micros_99: Option<u64>,
}
Fields§
§count: u64
§rate_s: Option<u64>
§micros_avg: Option<u64>
§micros_95: Option<u64>
§micros_99: Option<u64>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnwindSafe for Report
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