Struct QueryExtensionRequest
pub struct QueryExtensionRequest<'input> {
pub name: Cow<'input, [u8]>,
}
Expand description
check if extension is present.
Determines if the specified extension is present on this X11 server.
Every extension has a unique major_opcode
to identify requests, the minor
opcodes and request formats are extension-specific. If the extension provides
events and errors, the first_event
and first_error
fields in the reply are
set accordingly.
There should rarely be a need to use this request directly, XCB provides the
xcb_get_extension_data
function instead.
§Fields
name
- The name of the extension to query, for example “RANDR”. This is case sensitive!
§See
xdpyinfo
: programxcb_get_extension_data
: function
Fields§
§name: Cow<'input, [u8]>
Implementations§
§impl<'input> QueryExtensionRequest<'input>
impl<'input> QueryExtensionRequest<'input>
pub fn serialize(self) -> ([Cow<'input, [u8]>; 3], Vec<OwnedFd>)
pub fn serialize(self) -> ([Cow<'input, [u8]>; 3], Vec<OwnedFd>)
Serialize this request into bytes for the provided connection
pub fn into_owned(self) -> QueryExtensionRequest<'static>
pub fn into_owned(self) -> QueryExtensionRequest<'static>
Clone all borrowed data in this QueryExtensionRequest.
Trait Implementations§
§impl<'input> Clone for QueryExtensionRequest<'input>
impl<'input> Clone for QueryExtensionRequest<'input>
§fn clone(&self) -> QueryExtensionRequest<'input>
fn clone(&self) -> QueryExtensionRequest<'input>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for QueryExtensionRequest<'_>
impl Debug for QueryExtensionRequest<'_>
§impl<'input> Default for QueryExtensionRequest<'input>
impl<'input> Default for QueryExtensionRequest<'input>
§fn default() -> QueryExtensionRequest<'input>
fn default() -> QueryExtensionRequest<'input>
Returns the “default value” for a type. Read more
§impl<'input> ReplyRequest for QueryExtensionRequest<'input>
impl<'input> ReplyRequest for QueryExtensionRequest<'input>
§type Reply = QueryExtensionReply
type Reply = QueryExtensionReply
The kind of reply that this request generates.
§impl<'input> Request for QueryExtensionRequest<'input>
impl<'input> Request for QueryExtensionRequest<'input>
Auto Trait Implementations§
impl<'input> Freeze for QueryExtensionRequest<'input>
impl<'input> RefUnwindSafe for QueryExtensionRequest<'input>
impl<'input> Send for QueryExtensionRequest<'input>
impl<'input> Sync for QueryExtensionRequest<'input>
impl<'input> Unpin for QueryExtensionRequest<'input>
impl<'input> UnwindSafe for QueryExtensionRequest<'input>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)