Struct RequestHeader
pub struct RequestHeader {
pub major_opcode: u8,
pub minor_opcode: u8,
pub remaining_length: u32,
}
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§
§impl Clone for RequestHeader
impl Clone for RequestHeader
§fn clone(&self) -> RequestHeader
fn clone(&self) -> RequestHeader
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 RequestHeader
impl Debug for RequestHeader
impl Copy for RequestHeader
Auto Trait Implementations§
impl Freeze for RequestHeader
impl RefUnwindSafe for RequestHeader
impl Send for RequestHeader
impl Sync for RequestHeader
impl Unpin for RequestHeader
impl UnwindSafe for RequestHeader
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
)