Struct x11rb_protocol::protocol::record::EnableContextReply
source · pub struct EnableContextReply {
pub category: u8,
pub sequence: u16,
pub element_header: ElementHeader,
pub client_swapped: bool,
pub xid_base: u32,
pub server_time: u32,
pub rec_sequence_num: u32,
pub data: Vec<u8>,
}
Fields§
§category: u8
§sequence: u16
§element_header: ElementHeader
§client_swapped: bool
§xid_base: u32
§server_time: u32
§rec_sequence_num: u32
§data: Vec<u8>
Implementations§
source§impl EnableContextReply
impl EnableContextReply
sourcepub fn length(&self) -> u32
pub fn length(&self) -> u32
Get the value of the length
field.
The length
field is used as the length field of the data
field.
This function computes the field’s value again based on the length of the list.
§Panics
Panics if the value cannot be represented in the target type. This cannot happen with values of the struct received from the X11 server.
Trait Implementations§
source§impl Clone for EnableContextReply
impl Clone for EnableContextReply
source§fn clone(&self) -> EnableContextReply
fn clone(&self) -> EnableContextReply
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 moresource§impl Debug for EnableContextReply
impl Debug for EnableContextReply
source§impl Default for EnableContextReply
impl Default for EnableContextReply
source§fn default() -> EnableContextReply
fn default() -> EnableContextReply
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for EnableContextReply
impl<'de> Deserialize<'de> for EnableContextReply
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<EnableContextReply> for Reply
impl From<EnableContextReply> for Reply
source§fn from(reply: EnableContextReply) -> Reply
fn from(reply: EnableContextReply) -> Reply
Converts to this type from the input type.
source§impl Hash for EnableContextReply
impl Hash for EnableContextReply
source§impl Ord for EnableContextReply
impl Ord for EnableContextReply
source§fn cmp(&self, other: &EnableContextReply) -> Ordering
fn cmp(&self, other: &EnableContextReply) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for EnableContextReply
impl PartialEq for EnableContextReply
source§fn eq(&self, other: &EnableContextReply) -> bool
fn eq(&self, other: &EnableContextReply) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for EnableContextReply
impl PartialOrd for EnableContextReply
source§fn partial_cmp(&self, other: &EnableContextReply) -> Option<Ordering>
fn partial_cmp(&self, other: &EnableContextReply) -> Option<Ordering>
1.0.0 · source§fn 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 moresource§impl Serialize for EnableContextReply
impl Serialize for EnableContextReply
source§impl Serialize for EnableContextReply
impl Serialize for EnableContextReply
source§impl TryParse for EnableContextReply
impl TryParse for EnableContextReply
impl Eq for EnableContextReply
impl StructuralPartialEq for EnableContextReply
Auto Trait Implementations§
impl Freeze for EnableContextReply
impl RefUnwindSafe for EnableContextReply
impl Send for EnableContextReply
impl Sync for EnableContextReply
impl Unpin for EnableContextReply
impl UnwindSafe for EnableContextReply
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> TryParseFd for Twhere
T: TryParse,
impl<T> TryParseFd for Twhere
T: TryParse,
source§fn try_parse_fd<'a>(
value: &'a [u8],
_: &mut Vec<RawFdContainer>
) -> Result<(T, &'a [u8]), ParseError>
fn try_parse_fd<'a>( value: &'a [u8], _: &mut Vec<RawFdContainer> ) -> Result<(T, &'a [u8]), ParseError>
Try to parse the given values into an instance of this type. Read more