// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
usecore::time::Duration;/// What a run cost, beyond the verdicts.
#[derive(Debug, Clone, Copy)]pubstructTiming{/// How long the single instrumented build took.
pubbuild: Duration,
/// Elapsed wall time for the suite with no mutant active.
pubbaseline: Duration,
/// Total wall time for the whole run.
pubwall: Duration,
/// How many mutants were tested at once.
pubjobs:usize,
}