pub struct HistogramSnapshot {
pub name: String,
pub count: u64,
pub mean_ns: u64,
pub min_ns: u64,
pub max_ns: u64,
pub p50_ns: u64,
pub p99_ns: u64,
}Expand description
Histogram-Snapshot fuer das Dashboard.
Fields§
§name: StringLogischer Name.
count: u64Anzahl aller Records.
mean_ns: u64Mittelwert (ns).
min_ns: u64Min/Max.
max_ns: u64Max-Wert (ns).
p50_ns: u64p50/p99 — Aufrufer berechnet (z.B. aus hdrhistogram).
p99_ns: u64p99 als ns.
Trait Implementations§
Source§impl Clone for HistogramSnapshot
impl Clone for HistogramSnapshot
Source§fn clone(&self) -> HistogramSnapshot
fn clone(&self) -> HistogramSnapshot
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 HistogramSnapshot
impl RefUnwindSafe for HistogramSnapshot
impl Send for HistogramSnapshot
impl Sync for HistogramSnapshot
impl Unpin for HistogramSnapshot
impl UnsafeUnpin for HistogramSnapshot
impl UnwindSafe for HistogramSnapshot
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