Lines Matching defs:TimerPart
239 pub fn timer_part(&self) -> &TimerPart { in timer_part()
243 pub fn mut_timer_part(&mut self) -> &mut TimerPart { in mut_timer_part()
284 pub struct TimerPart { struct
287 value: Vec<TimerVal>,
290 on_active_sec: Duration,
293 on_boot_sec: Duration,
296 on_start_up_sec: Duration,
299 on_unit_active_sec: Duration,
302 on_unit_inactive_sec: Duration,
305 on_calendar: CalendarStandard,
308 accuarcy_sec: usize,
311 randomized_delay_sec: usize,
314 fixed_random_delay: bool,
317 on_clock_change: bool,
320 on_timezone_change: bool,
323 unit: usize,
347 impl Default for TimerPart { argument
375 impl TimerPart { implementation