#[repr(C)]pub struct mxr_ir_meta_t {
pub timer_resolution: u16,
pub frequency: u16,
pub nb_timings: u16,
pub repeat_offset: u16,
pub status: u8,
}Expand description
The metadata shared by the raw-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§
Source§impl Clone for mxr_ir_meta_t
impl Clone for mxr_ir_meta_t
Source§fn clone(&self) -> mxr_ir_meta_t
fn clone(&self) -> mxr_ir_meta_t
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for mxr_ir_meta_t
Auto Trait Implementations§
impl Freeze for mxr_ir_meta_t
impl RefUnwindSafe for mxr_ir_meta_t
impl Send for mxr_ir_meta_t
impl Sync for mxr_ir_meta_t
impl Unpin for mxr_ir_meta_t
impl UnsafeUnpin for mxr_ir_meta_t
impl UnwindSafe for mxr_ir_meta_t
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