Struct x11rb_protocol::protocol::xc_misc::GetXIDRangeRequest
source · [−]pub struct GetXIDRangeRequest;
Implementations
sourceimpl GetXIDRangeRequest
impl GetXIDRangeRequest
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 GetXIDRangeRequest
impl Clone for GetXIDRangeRequest
sourcefn clone(&self) -> GetXIDRangeRequest
fn clone(&self) -> GetXIDRangeRequest
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 GetXIDRangeRequest
impl Debug for GetXIDRangeRequest
sourceimpl Default for GetXIDRangeRequest
impl Default for GetXIDRangeRequest
sourcefn default() -> GetXIDRangeRequest
fn default() -> GetXIDRangeRequest
Returns the “default value” for a type. Read more
sourceimpl Hash for GetXIDRangeRequest
impl Hash for GetXIDRangeRequest
sourceimpl Ord for GetXIDRangeRequest
impl Ord for GetXIDRangeRequest
sourceimpl PartialOrd<GetXIDRangeRequest> for GetXIDRangeRequest
impl PartialOrd<GetXIDRangeRequest> for GetXIDRangeRequest
sourcefn partial_cmp(&self, other: &GetXIDRangeRequest) -> Option<Ordering>
fn partial_cmp(&self, other: &GetXIDRangeRequest) -> 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 GetXIDRangeRequest
impl ReplyRequest for GetXIDRangeRequest
type Reply = GetXIDRangeReply
type Reply = GetXIDRangeReply
The kind of reply that this request generates.
sourceimpl Request for GetXIDRangeRequest
impl Request for GetXIDRangeRequest
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 GetXIDRangeRequest
impl Eq for GetXIDRangeRequest
impl StructuralEq for GetXIDRangeRequest
impl StructuralPartialEq for GetXIDRangeRequest
Auto Trait Implementations
impl RefUnwindSafe for GetXIDRangeRequest
impl Send for GetXIDRangeRequest
impl Sync for GetXIDRangeRequest
impl Unpin for GetXIDRangeRequest
impl UnwindSafe for GetXIDRangeRequest
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