Struct liblmdb_sys::MDB_stat [] [src]

pub struct MDB_stat {
    pub ms_psize: c_uint,
    pub ms_depth: c_uint,
    pub ms_branch_pages: size_t,
    pub ms_leaf_pages: size_t,
    pub ms_overflow_pages: size_t,
    pub ms_entries: size_t,
}

Fields

ms_psize: c_uint ms_depth: c_uint ms_branch_pages: size_t ms_leaf_pages: size_t ms_overflow_pages: size_t ms_entries: size_t

Trait Implementations

impl Clone for MDB_stat
[src]

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
[src]