Enum git_commitgraph::file::verify::Error [−][src]
pub enum Error<E: Error + 'static> {
Commit(Error),
CommitId {
id: ObjectId,
pos: Position,
},
CommitsOutOfOrder {
id: ObjectId,
pos: Position,
predecessor_id: ObjectId,
},
Filename(String),
Generation {
generation: u32,
id: ObjectId,
},
Mismatch {
actual: ObjectId,
expected: ObjectId,
},
Processor(E),
RootTreeId {
id: ObjectId,
root_tree_id: ObjectId,
},
}
Expand description
The error used in File::traverse()
.
Variants
Commit(Error)
Tuple Fields of Commit
0: Error
Filename(String)
Tuple Fields of Filename
0: String