[][src]Struct cannyls::metrics::JournalRecordCounter

pub struct JournalRecordCounter { /* fields omitted */ }

ジャーナル領域に格納されるレコードの種別毎のカウンタ.

なお、制御系のレコードは扱いが特殊なため、カウント対象には含まれていない.

Implementations

impl JournalRecordCounter[src]

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

PUTレコードの数.

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

EMBEDレコードの数.

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

DELETEレコードの数.

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

DELETE_RANGEレコードの数.

Trait Implementations

impl Clone for JournalRecordCounter[src]

impl Debug for JournalRecordCounter[src]

Auto Trait Implementations

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<T> From<T> for T[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.