Trait x11rb::protocol::xtest::ConnectionExt

source ·
pub trait ConnectionExt: RequestConnection {
    // Provided methods
    fn xtest_get_version(
        &self,
        major_version: u8,
        minor_version: u16
    ) -> Result<Cookie<'_, Self, GetVersionReply>, ConnectionError> { ... }
    fn xtest_compare_cursor(
        &self,
        window: Window,
        cursor: Cursor
    ) -> Result<Cookie<'_, Self, CompareCursorReply>, ConnectionError> { ... }
    fn xtest_fake_input(
        &self,
        type_: u8,
        detail: u8,
        time: u32,
        root: Window,
        root_x: i16,
        root_y: i16,
        deviceid: u8
    ) -> Result<VoidCookie<'_, Self>, ConnectionError> { ... }
    fn xtest_grab_control(
        &self,
        impervious: bool
    ) -> Result<VoidCookie<'_, Self>, ConnectionError> { ... }
}
Expand description

Extension trait defining the requests of this extension.

Provided Methods§

source

fn xtest_get_version( &self, major_version: u8, minor_version: u16 ) -> Result<Cookie<'_, Self, GetVersionReply>, ConnectionError>

source

fn xtest_compare_cursor( &self, window: Window, cursor: Cursor ) -> Result<Cookie<'_, Self, CompareCursorReply>, ConnectionError>

source

fn xtest_fake_input( &self, type_: u8, detail: u8, time: u32, root: Window, root_x: i16, root_y: i16, deviceid: u8 ) -> Result<VoidCookie<'_, Self>, ConnectionError>

source

fn xtest_grab_control( &self, impervious: bool ) -> Result<VoidCookie<'_, Self>, ConnectionError>

Object Safety§

This trait is not object safe.

Implementors§