Struct x11rb_protocol::protocol::xc_misc::GetXIDListRequest
source · [−]pub struct GetXIDListRequest {
pub count: u32,
}
Fields
count: u32
Implementations
sourceimpl GetXIDListRequest
impl GetXIDListRequest
sourcepub fn serialize(self, major_opcode: u8) -> BufWithFds<PiecewiseBuf<'static>>
pub fn serialize(self, major_opcode: u8) -> BufWithFds<PiecewiseBuf<'static>>
Serialize this request into bytes for the provided connection
sourcepub fn try_parse_request(
header: RequestHeader,
value: &[u8]
) -> Result<Self, ParseError>
pub fn try_parse_request(
header: RequestHeader,
value: &[u8]
) -> Result<Self, ParseError>
Parse this request given its header, its body, and any fds that go along with it
Trait Implementations
sourceimpl Clone for GetXIDListRequest
impl Clone for GetXIDListRequest
sourcefn clone(&self) -> GetXIDListRequest
fn clone(&self) -> GetXIDListRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GetXIDListRequest
impl Debug for GetXIDListRequest
sourceimpl Default for GetXIDListRequest
impl Default for GetXIDListRequest
sourcefn default() -> GetXIDListRequest
fn default() -> GetXIDListRequest
Returns the “default value” for a type. Read more
sourceimpl Hash for GetXIDListRequest
impl Hash for GetXIDListRequest
sourceimpl Ord for GetXIDListRequest
impl Ord for GetXIDListRequest
sourceimpl PartialEq<GetXIDListRequest> for GetXIDListRequest
impl PartialEq<GetXIDListRequest> for GetXIDListRequest
sourcefn eq(&self, other: &GetXIDListRequest) -> bool
fn eq(&self, other: &GetXIDListRequest) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GetXIDListRequest) -> bool
fn ne(&self, other: &GetXIDListRequest) -> bool
This method tests for !=
.
sourceimpl PartialOrd<GetXIDListRequest> for GetXIDListRequest
impl PartialOrd<GetXIDListRequest> for GetXIDListRequest
sourcefn partial_cmp(&self, other: &GetXIDListRequest) -> Option<Ordering>
fn partial_cmp(&self, other: &GetXIDListRequest) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl ReplyRequest for GetXIDListRequest
impl ReplyRequest for GetXIDListRequest
type Reply = GetXIDListReply
type Reply = GetXIDListReply
The kind of reply that this request generates.
sourceimpl Request for GetXIDListRequest
impl Request for GetXIDListRequest
sourceconst EXTENSION_NAME: Option<&'static str> = Some(X11_EXTENSION_NAME)
const EXTENSION_NAME: Option<&'static str> = Some(X11_EXTENSION_NAME)
The protocol name of the extension that this request belongs to, or None for core requests
impl Copy for GetXIDListRequest
impl Eq for GetXIDListRequest
impl StructuralEq for GetXIDListRequest
impl StructuralPartialEq for GetXIDListRequest
Auto Trait Implementations
impl RefUnwindSafe for GetXIDListRequest
impl Send for GetXIDListRequest
impl Sync for GetXIDListRequest
impl Unpin for GetXIDListRequest
impl UnwindSafe for GetXIDListRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more