Enum git_commitgraph::graph::verify::Error [−][src]
pub enum Error<E: Error + 'static> { BaseGraphCount { actual: u8, expected: u8, path: PathBuf, }, BaseGraphId { actual: ObjectId, expected: ObjectId, index: u8, path: PathBuf, }, Commit(Error), File { err: Error<Infallible>, path: PathBuf, }, Generation { actual: u32, expected: u32, id: ObjectId, }, ParentOutOfRange { id: ObjectId, max_valid_pos: Position, parent_pos: Position, }, Processor(E), TooManyFiles(usize), }
Expand description
The error used in verify_integrity()
.
Variants
Tuple Fields of Commit
0: Error
Fields of File
err: Error<Infallible>
path: PathBuf
Tuple Fields of TooManyFiles
0: usize