1 2 3 4 5
use std::time::Instant; pub(super) fn elapsed_seconds(started: Instant) -> f64 { started.elapsed().as_secs_f64() }