pub struct Outcome<P> {
pub actual_index_checksum: ObjectId,
pub pack_traverse_statistics: Vec<Statistics>,
pub progress: P,
}
Expand description
Returned by multi_index::File::verify_integrity()
.
Fields§
§actual_index_checksum: ObjectId
The computed checksum of the multi-index which matched the stored one.
pack_traverse_statistics: Vec<Statistics>
The for each entry in index_names()
provide the corresponding pack traversal outcome.
progress: P
The provided progress instance.