kobo-db-tools 0.0.13

A Rust library to parse and analyze Kobo e-reader SQLite databases.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod bookmark;
pub mod dictionary;
pub mod error;
pub mod sessions;

use error::ExportError;

pub trait Export {
    fn to_csv(&self) -> Result<String, ExportError>;
    fn to_md(&self) -> Result<String, ExportError>;
    fn to_json(&self) -> Result<String, ExportError>;
}