pub struct SetDeviceButtonMappingRequest<'input> {
pub device_id: u8,
pub map: Cow<'input, [u8]>,
}
Fields§
§device_id: u8
§map: Cow<'input, [u8]>
Implementations§
source§impl<'input> SetDeviceButtonMappingRequest<'input>
impl<'input> SetDeviceButtonMappingRequest<'input>
sourcepub fn serialize(self, major_opcode: u8) -> BufWithFds<[Cow<'input, [u8]>; 3]>
pub fn serialize(self, major_opcode: u8) -> BufWithFds<[Cow<'input, [u8]>; 3]>
Serialize this request into bytes for the provided connection
sourcepub fn into_owned(self) -> SetDeviceButtonMappingRequest<'static>
pub fn into_owned(self) -> SetDeviceButtonMappingRequest<'static>
Clone all borrowed data in this SetDeviceButtonMappingRequest.
Trait Implementations§
source§impl<'input> Clone for SetDeviceButtonMappingRequest<'input>
impl<'input> Clone for SetDeviceButtonMappingRequest<'input>
source§fn clone(&self) -> SetDeviceButtonMappingRequest<'input>
fn clone(&self) -> SetDeviceButtonMappingRequest<'input>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SetDeviceButtonMappingRequest<'_>
impl Debug for SetDeviceButtonMappingRequest<'_>
source§impl<'input> Default for SetDeviceButtonMappingRequest<'input>
impl<'input> Default for SetDeviceButtonMappingRequest<'input>
source§fn default() -> SetDeviceButtonMappingRequest<'input>
fn default() -> SetDeviceButtonMappingRequest<'input>
Returns the “default value” for a type. Read more
source§impl<'input> ReplyRequest for SetDeviceButtonMappingRequest<'input>
impl<'input> ReplyRequest for SetDeviceButtonMappingRequest<'input>
§type Reply = SetDeviceButtonMappingReply
type Reply = SetDeviceButtonMappingReply
The kind of reply that this request generates.
source§impl<'input> Request for SetDeviceButtonMappingRequest<'input>
impl<'input> Request for SetDeviceButtonMappingRequest<'input>
Auto Trait Implementations§
impl<'input> Freeze for SetDeviceButtonMappingRequest<'input>
impl<'input> RefUnwindSafe for SetDeviceButtonMappingRequest<'input>
impl<'input> Send for SetDeviceButtonMappingRequest<'input>
impl<'input> Sync for SetDeviceButtonMappingRequest<'input>
impl<'input> Unpin for SetDeviceButtonMappingRequest<'input>
impl<'input> UnwindSafe for SetDeviceButtonMappingRequest<'input>
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