Struct x11rb_protocol::protocol::xkb::SetCompatMapRequest
source · pub struct SetCompatMapRequest<'input> {
pub device_spec: DeviceSpec,
pub recompute_actions: bool,
pub truncate_si: bool,
pub groups: SetOfGroup,
pub first_si: u16,
pub si: Cow<'input, [SymInterpret]>,
pub group_maps: Cow<'input, [ModDef]>,
}
Fields§
§device_spec: DeviceSpec
§recompute_actions: bool
§truncate_si: bool
§groups: SetOfGroup
§first_si: u16
§si: Cow<'input, [SymInterpret]>
§group_maps: Cow<'input, [ModDef]>
Implementations§
source§impl<'input> SetCompatMapRequest<'input>
impl<'input> SetCompatMapRequest<'input>
sourcepub fn serialize(self, major_opcode: u8) -> BufWithFds<[Cow<'input, [u8]>; 4]>
pub fn serialize(self, major_opcode: u8) -> BufWithFds<[Cow<'input, [u8]>; 4]>
Serialize this request into bytes for the provided connection
sourcepub fn try_parse_request(
header: RequestHeader,
value: &'input [u8]
) -> Result<Self, ParseError>
pub fn try_parse_request( header: RequestHeader, value: &'input [u8] ) -> Result<Self, ParseError>
Parse this request given its header, its body, and any fds that go along with it
sourcepub fn into_owned(self) -> SetCompatMapRequest<'static>
pub fn into_owned(self) -> SetCompatMapRequest<'static>
Clone all borrowed data in this SetCompatMapRequest.
Trait Implementations§
source§impl<'input> Clone for SetCompatMapRequest<'input>
impl<'input> Clone for SetCompatMapRequest<'input>
source§fn clone(&self) -> SetCompatMapRequest<'input>
fn clone(&self) -> SetCompatMapRequest<'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<'input> Debug for SetCompatMapRequest<'input>
impl<'input> Debug for SetCompatMapRequest<'input>
source§impl<'input> Default for SetCompatMapRequest<'input>
impl<'input> Default for SetCompatMapRequest<'input>
source§fn default() -> SetCompatMapRequest<'input>
fn default() -> SetCompatMapRequest<'input>
Returns the “default value” for a type. Read more
source§impl<'de, 'input> Deserialize<'de> for SetCompatMapRequest<'input>
impl<'de, 'input> Deserialize<'de> for SetCompatMapRequest<'input>
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<'input> Hash for SetCompatMapRequest<'input>
impl<'input> Hash for SetCompatMapRequest<'input>
source§impl<'input> Ord for SetCompatMapRequest<'input>
impl<'input> Ord for SetCompatMapRequest<'input>
source§fn cmp(&self, other: &SetCompatMapRequest<'input>) -> Ordering
fn cmp(&self, other: &SetCompatMapRequest<'input>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<'input> PartialEq for SetCompatMapRequest<'input>
impl<'input> PartialEq for SetCompatMapRequest<'input>
source§fn eq(&self, other: &SetCompatMapRequest<'input>) -> bool
fn eq(&self, other: &SetCompatMapRequest<'input>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'input> PartialOrd for SetCompatMapRequest<'input>
impl<'input> PartialOrd for SetCompatMapRequest<'input>
source§fn partial_cmp(&self, other: &SetCompatMapRequest<'input>) -> Option<Ordering>
fn partial_cmp(&self, other: &SetCompatMapRequest<'input>) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl<'input> Request for SetCompatMapRequest<'input>
impl<'input> Request for SetCompatMapRequest<'input>
source§impl<'input> Serialize for SetCompatMapRequest<'input>
impl<'input> Serialize for SetCompatMapRequest<'input>
impl<'input> Eq for SetCompatMapRequest<'input>
impl<'input> StructuralPartialEq for SetCompatMapRequest<'input>
impl<'input> VoidRequest for SetCompatMapRequest<'input>
Auto Trait Implementations§
impl<'input> Freeze for SetCompatMapRequest<'input>
impl<'input> RefUnwindSafe for SetCompatMapRequest<'input>
impl<'input> Send for SetCompatMapRequest<'input>
impl<'input> Sync for SetCompatMapRequest<'input>
impl<'input> Unpin for SetCompatMapRequest<'input>
impl<'input> UnwindSafe for SetCompatMapRequest<'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