Struct x11rb::protocol::glx::GetMaterialfvRequest
source · pub struct GetMaterialfvRequest {
pub context_tag: u32,
pub face: u32,
pub pname: u32,
}
Fields§
§context_tag: u32
§face: u32
§pname: u32
Implementations§
source§impl GetMaterialfvRequest
impl GetMaterialfvRequest
sourcepub fn serialize(
self,
major_opcode: u8
) -> ([Cow<'static, [u8]>; 1], Vec<OwnedFd>)
pub fn serialize( self, major_opcode: u8 ) -> ([Cow<'static, [u8]>; 1], Vec<OwnedFd>)
Serialize this request into bytes for the provided connection
sourcepub fn try_parse_request(
header: RequestHeader,
value: &[u8]
) -> Result<GetMaterialfvRequest, ParseError>
pub fn try_parse_request( header: RequestHeader, value: &[u8] ) -> Result<GetMaterialfvRequest, ParseError>
Parse this request given its header, its body, and any fds that go along with it
Trait Implementations§
source§impl Clone for GetMaterialfvRequest
impl Clone for GetMaterialfvRequest
source§fn clone(&self) -> GetMaterialfvRequest
fn clone(&self) -> GetMaterialfvRequest
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 GetMaterialfvRequest
impl Debug for GetMaterialfvRequest
source§impl Default for GetMaterialfvRequest
impl Default for GetMaterialfvRequest
source§fn default() -> GetMaterialfvRequest
fn default() -> GetMaterialfvRequest
Returns the “default value” for a type. Read more
source§impl Hash for GetMaterialfvRequest
impl Hash for GetMaterialfvRequest
source§impl Ord for GetMaterialfvRequest
impl Ord for GetMaterialfvRequest
source§fn cmp(&self, other: &GetMaterialfvRequest) -> Ordering
fn cmp(&self, other: &GetMaterialfvRequest) -> 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 GetMaterialfvRequest
impl PartialEq for GetMaterialfvRequest
source§fn eq(&self, other: &GetMaterialfvRequest) -> bool
fn eq(&self, other: &GetMaterialfvRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for GetMaterialfvRequest
impl PartialOrd for GetMaterialfvRequest
source§fn partial_cmp(&self, other: &GetMaterialfvRequest) -> Option<Ordering>
fn partial_cmp(&self, other: &GetMaterialfvRequest) -> 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 ReplyRequest for GetMaterialfvRequest
impl ReplyRequest for GetMaterialfvRequest
§type Reply = GetMaterialfvReply
type Reply = GetMaterialfvReply
The kind of reply that this request generates.
source§impl Request for GetMaterialfvRequest
impl Request for GetMaterialfvRequest
impl Copy for GetMaterialfvRequest
impl Eq for GetMaterialfvRequest
impl StructuralPartialEq for GetMaterialfvRequest
Auto Trait Implementations§
impl Freeze for GetMaterialfvRequest
impl RefUnwindSafe for GetMaterialfvRequest
impl Send for GetMaterialfvRequest
impl Sync for GetMaterialfvRequest
impl Unpin for GetMaterialfvRequest
impl UnwindSafe for GetMaterialfvRequest
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