pub struct ExplorerHistogramBucket {
pub start_realtime_usec: u64,
pub end_realtime_usec: u64,
pub values: HashMap<Vec<u8>, u64>,
}Fields§
§start_realtime_usec: u64§end_realtime_usec: u64§values: HashMap<Vec<u8>, u64>Trait Implementations§
Source§impl Clone for ExplorerHistogramBucket
impl Clone for ExplorerHistogramBucket
Source§fn clone(&self) -> ExplorerHistogramBucket
fn clone(&self) -> ExplorerHistogramBucket
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 moreAuto Trait Implementations§
impl Freeze for ExplorerHistogramBucket
impl RefUnwindSafe for ExplorerHistogramBucket
impl Send for ExplorerHistogramBucket
impl Sync for ExplorerHistogramBucket
impl Unpin for ExplorerHistogramBucket
impl UnsafeUnpin for ExplorerHistogramBucket
impl UnwindSafe for ExplorerHistogramBucket
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