pub struct ExtensionManager(/* private fields */);
Expand description
Helper for implementing RequestConnection::extension_information()
.
This helps with implementing RequestConnection
. Most likely, you do not need this in your own
code, unless you really want to implement your own X11 connection.
Implementations§
Source§impl ExtensionManager
impl ExtensionManager
Sourcepub fn prefetch_extension_information<C: RequestConnection>(
&mut self,
conn: &C,
extension_name: &'static str,
) -> Result<(), ConnectionError>
pub fn prefetch_extension_information<C: RequestConnection>( &mut self, conn: &C, extension_name: &'static str, ) -> Result<(), ConnectionError>
Prefetchs an extension sending a QueryExtension
without waiting for
the reply.
Sourcepub fn insert_extension_information(
&mut self,
extension_name: &'static str,
info: Option<ExtensionInformation>,
)
pub fn insert_extension_information( &mut self, extension_name: &'static str, info: Option<ExtensionInformation>, )
Insert an extension if you already have the information.
Sourcepub fn extension_information<C: RequestConnection>(
&mut self,
conn: &C,
extension_name: &'static str,
) -> Result<Option<ExtensionInformation>, ConnectionError>
pub fn extension_information<C: RequestConnection>( &mut self, conn: &C, extension_name: &'static str, ) -> Result<Option<ExtensionInformation>, ConnectionError>
An implementation of RequestConnection::extension_information()
.
The given connection is used for sending a QueryExtension
request if needed.
Trait Implementations§
Source§impl Debug for ExtensionManager
impl Debug for ExtensionManager
Source§impl Default for ExtensionManager
impl Default for ExtensionManager
Source§fn default() -> ExtensionManager
fn default() -> ExtensionManager
Returns the “default value” for a type. Read more
Source§impl ExtInfoProvider for ExtensionManager
impl ExtInfoProvider for ExtensionManager
Source§fn get_from_major_opcode(
&self,
major_opcode: u8,
) -> Option<(&str, ExtensionInformation)>
fn get_from_major_opcode( &self, major_opcode: u8, ) -> Option<(&str, ExtensionInformation)>
Returns the information of the extension that whose
opcode is
major_opcode
.Source§fn get_from_event_code(
&self,
event_code: u8,
) -> Option<(&str, ExtensionInformation)>
fn get_from_event_code( &self, event_code: u8, ) -> Option<(&str, ExtensionInformation)>
Returns the information of the extension that whose
event number range includes
event_number
.Source§fn get_from_error_code(
&self,
error_code: u8,
) -> Option<(&str, ExtensionInformation)>
fn get_from_error_code( &self, error_code: u8, ) -> Option<(&str, ExtensionInformation)>
Returns the information of the extension that whose
error number range includes
error_number
.Auto Trait Implementations§
impl Freeze for ExtensionManager
impl RefUnwindSafe for ExtensionManager
impl Send for ExtensionManager
impl Sync for ExtensionManager
impl Unpin for ExtensionManager
impl UnwindSafe for ExtensionManager
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more