kobo-db-tools 0.0.13

A Rust library to parse and analyze Kobo e-reader SQLite databases.
Documentation
1
2
3
4
5
pub trait Statistics {
    type Metric;
    fn avg(&self) -> f64;
    fn calculate_percentile(&self, metric: Self::Metric, percentiles: &[f64]) -> Vec<f64>;
}