pub trait RepositoryExplorer {
    fn commits(&self) -> Result<Vec<Commit<'_>>>;
    fn change_count_per_file(&self) -> Result<HashMap<String, Churn>>;
}

Required Methods§

Implementors§