pub trait Importer: IntoIterator<Item = Result<History>> + Sized {
    const NAME: &'static str;

    fn histpath() -> Result<PathBuf>;
    fn parse(path: impl AsRef<Path>) -> Result<Self>;
}

Required Associated Constants

Required Methods

Implementors