pub mod conversion {
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error(transparent)]
Decode(#[from] git_object::decode::Error),
#[error("Expected object type {}, but got {}", .expected, .actual)]
UnexpectedType {
expected: git_object::Kind,
actual: git_object::Kind,
},
}
}
pub mod find {
pub type Error = git_odb::store::find::Error;
pub mod existing {
pub type Error = git_odb::find::existing::Error<git_odb::store::find::Error>;
}
}
pub mod write {
pub type Error = git_odb::store::write::Error;
}