[][src]Struct x11rb::protocol::xkb::SetCompatMapRequest

pub struct SetCompatMapRequest<'input> {
    pub device_spec: DeviceSpec,
    pub recompute_actions: bool,
    pub truncate_si: bool,
    pub groups: u8,
    pub first_si: u16,
    pub si: Cow<'input, [SymInterpret]>,
    pub group_maps: Cow<'input, [ModDef]>,
}

Fields

device_spec: DeviceSpecrecompute_actions: booltruncate_si: boolgroups: u8first_si: u16si: Cow<'input, [SymInterpret]>group_maps: Cow<'input, [ModDef]>

Implementations

impl<'input> SetCompatMapRequest<'input>[src]

pub fn try_parse_request(
    header: RequestHeader,
    value: &'input [u8]
) -> Result<Self, ParseError>
[src]

Parse this request given its header, its body, and any fds that go along with it

pub fn into_owned(self) -> SetCompatMapRequest<'static>[src]

Clone all borrowed data in this SetCompatMapRequest.

Trait Implementations

impl<'input> Clone for SetCompatMapRequest<'input>[src]

impl<'input> Debug for SetCompatMapRequest<'input>[src]

impl<'input> Eq for SetCompatMapRequest<'input>[src]

impl<'input> PartialEq<SetCompatMapRequest<'input>> for SetCompatMapRequest<'input>[src]

impl<'input> Request for SetCompatMapRequest<'input>[src]

type Reply = ()

impl<'input> StructuralEq for SetCompatMapRequest<'input>[src]

impl<'input> StructuralPartialEq for SetCompatMapRequest<'input>[src]

Auto Trait Implementations

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.