#[derive(Debug, derive_more::Display)] pub enum Error { UnableToOpenRepo(String), NoFetchRemoteFound, Connect(String), Fetch(String), Lock, } impl std::error::Error for Error {}