Trait x11rb::protocol::xevie::ConnectionExt

source ·
pub trait ConnectionExt: RequestConnection {
    // Provided methods
    fn xevie_query_version(
        &self,
        client_major_version: u16,
        client_minor_version: u16
    ) -> Result<Cookie<'_, Self, QueryVersionReply>, ConnectionError> { ... }
    fn xevie_start(
        &self,
        screen: u32
    ) -> Result<Cookie<'_, Self, StartReply>, ConnectionError> { ... }
    fn xevie_end(
        &self,
        cmap: u32
    ) -> Result<Cookie<'_, Self, EndReply>, ConnectionError> { ... }
    fn xevie_send(
        &self,
        event: Event,
        data_type: u32
    ) -> Result<Cookie<'_, Self, SendReply>, ConnectionError> { ... }
    fn xevie_select_input(
        &self,
        event_mask: u32
    ) -> Result<Cookie<'_, Self, SelectInputReply>, ConnectionError> { ... }
}
Expand description

Extension trait defining the requests of this extension.

Provided Methods§

source

fn xevie_query_version( &self, client_major_version: u16, client_minor_version: u16 ) -> Result<Cookie<'_, Self, QueryVersionReply>, ConnectionError>

source

fn xevie_start( &self, screen: u32 ) -> Result<Cookie<'_, Self, StartReply>, ConnectionError>

source

fn xevie_end( &self, cmap: u32 ) -> Result<Cookie<'_, Self, EndReply>, ConnectionError>

source

fn xevie_send( &self, event: Event, data_type: u32 ) -> Result<Cookie<'_, Self, SendReply>, ConnectionError>

source

fn xevie_select_input( &self, event_mask: u32 ) -> Result<Cookie<'_, Self, SelectInputReply>, ConnectionError>

Object Safety§

This trait is not object safe.

Implementors§