kobo_db_tools/export/
mod.rs

1pub mod bookmark;
2pub mod dictionary;
3pub mod error;
4
5use error::ExportError;
6
7pub trait Export {
8    fn to_csv(&self) -> Result<String, ExportError>;
9    fn to_md(&self) -> Result<String, ExportError>;
10    fn to_json(&self) -> Result<String, ExportError>;
11}