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