pub struct IrMeta {
pub timer_resolution: u16,
pub frequency: u16,
pub nb_timings: u16,
pub repeat_offset: u16,
pub status: u8,
}Expand description
The raw-IR metadata shared by the IR capture and transmit frames.
Fields§
§timer_resolution: u16Tick length of the timing values.
frequency: u16Carrier frequency in Hz.
nb_timings: u16Number of timing values that follow.
repeat_offset: u16Index at which the repeat section starts.
status: u8Capture status.
Trait Implementations§
impl Copy for IrMeta
impl Eq for IrMeta
impl StructuralPartialEq for IrMeta
Auto Trait Implementations§
impl Freeze for IrMeta
impl RefUnwindSafe for IrMeta
impl Send for IrMeta
impl Sync for IrMeta
impl Unpin for IrMeta
impl UnsafeUnpin for IrMeta
impl UnwindSafe for IrMeta
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