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

pub struct SelectEventsRequest<'input> {
    pub device_spec: DeviceSpec,
    pub clear: u16,
    pub select_all: u16,
    pub affect_map: u16,
    pub map: u16,
    pub details: Cow<'input, SelectEventsAux>,
}

Fields

device_spec: DeviceSpecclear: u16select_all: u16affect_map: u16map: u16details: Cow<'input, SelectEventsAux>

Implementations

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

pub fn send<Conn: ?Sized>(
    self,
    conn: &Conn
) -> Result<VoidCookie<'_, Conn>, ConnectionError> where
    Conn: RequestConnection
[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) -> SelectEventsRequest<'static>[src]

Clone all borrowed data in this SelectEventsRequest.

Trait Implementations

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

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

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

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

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

type Reply = ()

The kind of reply that this request generates.

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

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

Auto Trait Implementations

impl<'input> RefUnwindSafe for SelectEventsRequest<'input>

impl<'input> Send for SelectEventsRequest<'input>

impl<'input> Sync for SelectEventsRequest<'input>

impl<'input> Unpin for SelectEventsRequest<'input>

impl<'input> UnwindSafe for SelectEventsRequest<'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.