pub type Error = Box<dyn std::error::Error + Send + Sync + 'static>;
pub mod existing {
use gix_hash::ObjectId;
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error(transparent)]
Find(crate::find::Error),
#[error("An object with id {} could not be found", .oid)]
NotFound { oid: ObjectId },
}
}
pub mod existing_object {
use gix_hash::ObjectId;
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error(transparent)]
Find(crate::find::Error),
#[error("Could not decode object at {oid}")]
Decode {
oid: ObjectId,
source: crate::decode::Error,
},
#[error("An object with id {oid} could not be found")]
NotFound { oid: ObjectId },
#[error("Expected object of kind {expected} but got {actual} at {oid}")]
ObjectKind {
oid: ObjectId,
actual: crate::Kind,
expected: crate::Kind,
},
}
}
pub mod existing_iter {
use gix_hash::ObjectId;
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error(transparent)]
Find(crate::find::Error),
#[error("An object with id {oid} could not be found")]
NotFound { oid: ObjectId },
#[error("Expected object of kind {expected} but got {actual} at {oid}")]
ObjectKind {
oid: ObjectId,
actual: crate::Kind,
expected: crate::Kind,
},
}
}
#[derive(Debug, Copy, Clone)]
pub struct Never;
impl super::FindHeader for Never {
fn try_header(&self, _id: &gix_hash::oid) -> Result<Option<crate::Header>, Error> {
Ok(None)
}
}
impl super::Find for Never {
fn try_find<'a>(&self, _id: &gix_hash::oid, _buffer: &'a mut Vec<u8>) -> Result<Option<crate::Data<'a>>, Error> {
Ok(None)
}
}
impl super::Exists for Never {
fn exists(&self, _id: &gix_hash::oid) -> bool {
false
}
}