pub struct Outcome<P> {
pub actual_index_checksum: ObjectId,
pub statistics: Statistics,
pub progress: P,
}
Expand description
The outcome of the traverse()
method.
Fields§
§actual_index_checksum: ObjectId
The checksum obtained when hashing the file, which matched the checksum contained within the file.
statistics: Statistics
The statistics obtaine during traversal.
progress: P
The input progress to allow reuse.