pub trait ConnectionExt: RequestConnection {
    // Provided method
    fn ge_query_version(
        &self,
        client_major_version: u16,
        client_minor_version: u16
    ) -> Pin<Box<dyn Future<Output = Result<Cookie<'_, Self, QueryVersionReply>, ConnectionError>> + Send + '_>> { ... }
}
Expand description

Extension trait defining the requests of this extension.

Provided Methods§

source

fn ge_query_version( &self, client_major_version: u16, client_minor_version: u16 ) -> Pin<Box<dyn Future<Output = Result<Cookie<'_, Self, QueryVersionReply>, ConnectionError>> + Send + '_>>

Object Safety§

This trait is not object safe.

Implementors§