Enum git_ref::peel::to_id::Error [−][src]
pub enum Error {
Follow(Error),
Cycle(PathBuf),
DepthLimitExceeded {
max_depth: usize,
},
Find(Box<dyn Error + Send + Sync + 'static>),
NotFound {
oid: ObjectId,
name: BString,
},
}
Expand description
The error returned by crate::file::ReferenceExt::peel_to_id_in_place()
.
Variants
Follow(Error)
Tuple Fields of Follow
0: Error
Cycle(PathBuf)
Tuple Fields of Cycle
0: PathBuf
Fields of DepthLimitExceeded
max_depth: usize
Fields of NotFound
oid: ObjectId
name: BString