Struct x11rb_protocol::x11_utils::RequestHeader
source · [−]Expand description
A representation of the header of a request.
Fields
major_opcode: u8
The major opcode of the request.
minor_opcode: u8
The minor opcode of the request (which, for some requests, may not be an opcode at all).
remaining_length: u32
The remaining length of the request, measured in 4 bytes units. Unlike the wire format, this does not include the header itself, which is 1 unit (or 2 if BigRequests is enabled and the length in the first unit is zero). If the BigRequests extension is enabled this can be greater than u16::max_value - 1.
Trait Implementations
sourceimpl Clone for RequestHeader
impl Clone for RequestHeader
sourcefn clone(&self) -> RequestHeader
fn clone(&self) -> RequestHeader
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 RequestHeader
impl Debug for RequestHeader
impl Copy for RequestHeader
Auto Trait Implementations
impl RefUnwindSafe for RequestHeader
impl Send for RequestHeader
impl Sync for RequestHeader
impl Unpin for RequestHeader
impl UnwindSafe for RequestHeader
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