#[repr(C)]pub struct CecTimer {
pub day: u8,
pub month: u8,
pub start_h: u8,
pub start_min: u8,
pub duration_h: u8,
pub duration_min: u8,
}Expand description
Fields§
§day: u8Day of Month: 1 byte 1..=31
month: u8Month of Year: 1 byte 1..=12
start_h: u8Start Hour: 1 byte 0..=23
start_min: u8Start Minute: 1 byte 0..=59
duration_h: u8Duration Hours: 1 byte 1..=99
duration_min: u8Duration Minutes: 1 byte 0..=59
Auto Trait Implementations§
impl RefUnwindSafe for CecTimer
impl Send for CecTimer
impl Sync for CecTimer
impl Unpin for CecTimer
impl UnwindSafe for CecTimer
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more