pub struct HostEntry {
pub host: String,
pub count: u64,
pub bytes_sum: i128,
pub minimum: String,
}Expand description
The aggregate state needed by ClickBench’s host grouping.
Fields§
§host: String§count: u64§bytes_sum: i128§minimum: StringTrait Implementations§
impl Eq for HostEntry
impl StructuralPartialEq for HostEntry
Auto Trait Implementations§
impl Freeze for HostEntry
impl RefUnwindSafe for HostEntry
impl Send for HostEntry
impl Sync for HostEntry
impl Unpin for HostEntry
impl UnsafeUnpin for HostEntry
impl UnwindSafe for HostEntry
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