#[repr(C)]pub struct mxr_ir_transmit_request_t {
pub target: mxr_uid_t,
pub local_mode: u8,
pub local_bay: u8,
pub timestamp: u32,
pub meta: mxr_ir_meta_t,
pub timings: *const u8,
pub timings_len: usize,
}Expand description
Asks one device to blast raw IR on one of its local bays.
Fields§
§target: mxr_uid_tThe device to act on.
local_mode: u8Bay mode in the target’s own numbering, which is not a port number.
local_bay: u8Bay number in the target’s own numbering, which is not a port number.
timestamp: u32Sender clock at send time.
meta: mxr_ir_meta_tMetadata for the timings.
timings: *const u8The raw on/off timing blob, borrowed for the call.
timings_len: usizeLength of timings.
Trait Implementations§
Source§impl Clone for mxr_ir_transmit_request_t
impl Clone for mxr_ir_transmit_request_t
Source§fn clone(&self) -> mxr_ir_transmit_request_t
fn clone(&self) -> mxr_ir_transmit_request_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_transmit_request_t
Auto Trait Implementations§
impl !Send for mxr_ir_transmit_request_t
impl !Sync for mxr_ir_transmit_request_t
impl Freeze for mxr_ir_transmit_request_t
impl RefUnwindSafe for mxr_ir_transmit_request_t
impl Unpin for mxr_ir_transmit_request_t
impl UnsafeUnpin for mxr_ir_transmit_request_t
impl UnwindSafe for mxr_ir_transmit_request_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