Struct lmdb_zero::Stat [] [src]

pub struct Stat {
    pub psize: u32,
    pub depth: u32,
    pub branch_pages: usize,
    pub leaf_pages: usize,
    pub overflow_pages: usize,
    pub entries: usize,
}

Statistics information about an environment.

Fields

Size of a database page. This is currently the same for all databases.

Depth (height) of the B-tree

Number of internal (non-leaf) pages

Number of leaf pages

Number of overflow pages

Number of data items

Trait Implementations

impl Debug for Stat
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Stat
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Stat
[src]

impl From<MDB_stat> for Stat
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Stat

impl Sync for Stat