Struct lmdb_rs::MDB_stat []

pub struct MDB_stat {
    pub ms_psize: u32,
    pub ms_depth: u32,
    pub ms_branch_pages: u64,
    pub ms_leaf_pages: u64,
    pub ms_overflow_pages: u64,
    pub ms_entries: u64,
}

Fields

ms_psize: u32 ms_depth: u32 ms_branch_pages: u64 ms_leaf_pages: u64 ms_overflow_pages: u64 ms_entries: u64

Trait Implementations

impl Clone for MDB_stat

fn clone(&self) -> MDB_stat

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for MDB_stat