#[repr(C)]pub struct mxr_key_transmit_request_t {
pub target: mxr_uid_t,
pub local_bay: u16,
pub key: u16,
}Expand description
Asks one device to send a remote-control key on a bay.
Fields§
§target: mxr_uid_tThe device to act on.
local_bay: u16Bay in the target’s own numbering, which is not a port number.
key: u16The key to send.
Trait Implementations§
Source§impl Clone for mxr_key_transmit_request_t
impl Clone for mxr_key_transmit_request_t
Source§fn clone(&self) -> mxr_key_transmit_request_t
fn clone(&self) -> mxr_key_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_key_transmit_request_t
Auto Trait Implementations§
impl Freeze for mxr_key_transmit_request_t
impl RefUnwindSafe for mxr_key_transmit_request_t
impl Send for mxr_key_transmit_request_t
impl Sync for mxr_key_transmit_request_t
impl Unpin for mxr_key_transmit_request_t
impl UnsafeUnpin for mxr_key_transmit_request_t
impl UnwindSafe for mxr_key_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