pub struct GetColorTable {
pub context_tag: ContextTag,
pub target: u32,
pub format: u32,
pub type: u32,
pub swap_bytes: bool,
}Expand description
The GetColorTable request.
This request replies GetColorTableReply.
Associated cookie types are GetColorTableCookie and GetColorTableCookieUnchecked.
Fields§
§context_tag: ContextTag§target: u32§format: u32§type: u32§swap_bytes: boolTrait Implementations§
Source§impl Clone for GetColorTable
impl Clone for GetColorTable
Source§fn clone(&self) -> GetColorTable
fn clone(&self) -> GetColorTable
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 GetColorTable
impl Debug for GetColorTable
Source§impl RawRequest for GetColorTable
impl RawRequest for GetColorTable
Source§fn raw_request(&self, c: &Connection, checked: bool) -> u64
fn raw_request(&self, c: &Connection, checked: bool) -> u64
Actual implementation of the request sending Read more
Source§impl Request for GetColorTable
impl Request for GetColorTable
Source§impl RequestWithReply for GetColorTable
impl RequestWithReply for GetColorTable
Source§type Reply = GetColorTableReply
type Reply = GetColorTableReply
Reply associated with the request
Source§type Cookie = GetColorTableCookie
type Cookie = GetColorTableCookie
Default cookie type for the request, as returned by Connection::send_request.
Source§type CookieUnchecked = GetColorTableCookieUnchecked
type CookieUnchecked = GetColorTableCookieUnchecked
Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.
Auto Trait Implementations§
impl Freeze for GetColorTable
impl RefUnwindSafe for GetColorTable
impl Send for GetColorTable
impl Sync for GetColorTable
impl Unpin for GetColorTable
impl UnwindSafe for GetColorTable
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