Struct robt::Stats[][src]

pub struct Stats {
    pub name: String,
    pub z_blocksize: usize,
    pub m_blocksize: usize,
    pub v_blocksize: usize,
    pub delta_ok: bool,
    pub value_in_vlog: bool,
    pub vlog_file: Option<OsString>,
    pub n_count: u64,
    pub n_deleted: usize,
    pub seqno: u64,
    pub n_abytes: u64,
    pub build_time: u64,
    pub epoch: u64,
}

Statistic for Read Only BTree index.

Fields

name: String

Comes from Config type.

z_blocksize: usize

Comes from Config type.

m_blocksize: usize

Comes from Config type.

v_blocksize: usize

Comes from Config type.

delta_ok: bool

Comes from Config type.

value_in_vlog: bool

Comes from Config type.

vlog_file: Option<OsString>

Optional value log file if either value_in_log or delta_ok is true.

n_count: u64

Number of entries indexed.

n_deleted: usize

Number of entries that are marked as deleted.

seqno: u64

Sequence number for the latest entry.

n_abytes: u64

Older size of value-log file, applicable only in incremental build.

build_time: u64

Time taken to build this btree.

epoch: u64

Timestamp when this index was built, from UNIX EPOCH, in secs.

Trait Implementations

impl Clone for Stats[src]

impl Debug for Stats[src]

impl Default for Stats[src]

impl From<Config> for Stats[src]

impl From<Stats> for Config[src]

impl FromCbor for Stats[src]

impl IntoCbor for Stats[src]

Auto Trait Implementations

impl RefUnwindSafe for Stats

impl Send for Stats

impl Sync for Stats

impl Unpin for Stats

impl UnwindSafe for Stats

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> 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.