1pub enum LogType { 2 Info, 3 Warning, 4 Error, 5 Time, 6} 7 8#[derive(Copy, Clone)] 9pub enum TimeUnit { 10 Nanoseconds, 11 Microseconds, 12 Milliseconds, 13}