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 {
#[derive(Debug, thiserror::Error)]
#[error(transparent)]
pub struct Error(#[from] pub gix_object::find::Error);
pub mod existing {
pub type Error = gix_object::find::existing::Error;
pub mod with_conversion {
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error(transparent)]
Find(#[from] crate::object::find::existing::Error),
#[error(transparent)]
Convert(#[from] crate::object::try_into::Error),
}
}
}
}
pub mod write {
#[derive(Debug, thiserror::Error)]
#[error(transparent)]
pub struct Error(#[from] pub gix_object::write::Error);
}