pub struct Outcome<P> {
pub loose_object_stores: Vec<LooseObjectStatistics>,
pub index_statistics: Vec<IndexStatistics>,
pub progress: P,
}
Expand description
Returned by Store::verify_integrity()
.
Fields§
§loose_object_stores: Vec<LooseObjectStatistics>
Statistics for validated loose object stores.
index_statistics: Vec<IndexStatistics>
Pack traversal statistics for each index and their pack(s)
progress: P
The provided progress instance.