pub struct HostStat {Show 13 fields
pub host: String,
pub count: usize,
pub methods: BTreeMap<String, usize>,
pub status_classes: BTreeMap<String, usize>,
pub error_count: usize,
pub p50_ms: f64,
pub p95_ms: f64,
pub max_ms: f64,
pub bytes_sent: i64,
pub bytes_received: i64,
pub duplicate_count: usize,
pub first_offset_ms: f64,
pub last_offset_ms: f64,
}Fields§
§host: String§count: usize§methods: BTreeMap<String, usize>§status_classes: BTreeMap<String, usize>§error_count: usize§p50_ms: f64§p95_ms: f64§max_ms: f64§bytes_sent: i64§bytes_received: i64§duplicate_count: usize§first_offset_ms: f64§last_offset_ms: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for HostStat
impl RefUnwindSafe for HostStat
impl Send for HostStat
impl Sync for HostStat
impl Unpin for HostStat
impl UnsafeUnpin for HostStat
impl UnwindSafe for HostStat
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