Struct tikv::server::lock_manager::metrics::DETECT_DURATION_HISTOGRAM[][src]

pub struct DETECT_DURATION_HISTOGRAM {
    __private_field: (),
}

Fields

__private_field: ()

Methods from Deref<Target = Histogram>

pub fn observe(&self, v: f64)[src]

Add a single observation to the Histogram.

pub fn start_timer(&self) -> HistogramTimer[src]

Return a HistogramTimer to track a duration.

pub fn start_coarse_timer(&self) -> HistogramTimer[src]

Return a HistogramTimer to track a duration. It is faster but less precise.

pub fn observe_closure_duration<F, T>(&self, f: F) -> T where
    F: FnOnce() -> T, 
[src]

Observe execution time of a closure, in second.

pub fn observe_closure_duration_coarse<F, T>(&self, f: F) -> T where
    F: FnOnce() -> T, 
[src]

Observe execution time of a closure, in second.

pub fn local(&self) -> LocalHistogram[src]

Return a LocalHistogram for single thread usage.

pub fn get_sample_sum(&self) -> f64[src]

Return accumulated sum of all samples.

pub fn get_sample_count(&self) -> u64[src]

Return count of all samples.

Trait Implementations

impl Deref for DETECT_DURATION_HISTOGRAM[src]

type Target = Histogram

The resulting type after dereferencing.

impl LazyStatic for DETECT_DURATION_HISTOGRAM[src]

Auto Trait Implementations

impl RefUnwindSafe for DETECT_DURATION_HISTOGRAM

impl Send for DETECT_DURATION_HISTOGRAM

impl Sync for DETECT_DURATION_HISTOGRAM

impl Unpin for DETECT_DURATION_HISTOGRAM

impl UnwindSafe for DETECT_DURATION_HISTOGRAM

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<V, W> ConvertFrom<W> for V where
    W: ConvertTo<V>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]