usecrate::util::units::Second;/// Results from timing a single command
#[derive(Debug, Default, Copy, Clone)]pubstructTimingResult{/// Wall clock time
pubtime_real: Second,
/// Time spent in user mode
pubtime_user: Second,
/// Time spent in kernel mode
pubtime_system: Second,
/// Maximum amount of memory used, in bytes
pubmemory_usage_byte:u64,
}