pub struct QueueTimeBucket {
pub le_ns: u64,
pub count: u64,
}Expand description
Single histogram bucket for queue time metrics.
Fields§
§le_ns: u64Upper bound of bucket in nanoseconds.
count: u64Number of observations in this bucket.
Trait Implementations§
Source§impl Clone for QueueTimeBucket
impl Clone for QueueTimeBucket
Source§fn clone(&self) -> QueueTimeBucket
fn clone(&self) -> QueueTimeBucket
Returns a duplicate of the value. Read more
1.0.0 · 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 QueueTimeBucket
impl Debug for QueueTimeBucket
Source§impl Default for QueueTimeBucket
impl Default for QueueTimeBucket
Source§fn default() -> QueueTimeBucket
fn default() -> QueueTimeBucket
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for QueueTimeBucket
impl RefUnwindSafe for QueueTimeBucket
impl Send for QueueTimeBucket
impl Sync for QueueTimeBucket
impl Unpin for QueueTimeBucket
impl UnwindSafe for QueueTimeBucket
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