Trait Export

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

Required Methods§

Implementations on Foreign Types§

Source§

impl Export for [Bookmark]

Source§

impl Export for [DictionaryWord]

Implementors§