native_db 0.8.2

Drop-in embedded database
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug)]
pub struct Stats {
    pub primary_tables: Vec<StatsTable>,
    pub secondary_tables: Vec<StatsTable>,
}

#[derive(Debug)]
pub struct StatsTable {
    pub name: String,
    pub n_entries: Option<u64>,
}