1 2 3 4 5 6 7 8 9 10
use crate::mach; /// Time value returned by kernel #[derive(Debug, Eq, PartialEq, Copy, Clone)] #[doc(alias = "time_value_t")] #[repr(C)] pub struct TimeValue { pub seconds: mach::Integer, pub microseconds: mach::Integer, }