pub struct QueryImageAttributes {
pub port: Port,
pub id: u32,
pub width: u16,
pub height: u16,
}Expand description
The QueryImageAttributes request.
This request replies QueryImageAttributesReply.
Associated cookie types are QueryImageAttributesCookie and QueryImageAttributesCookieUnchecked.
Fields§
§port: Port§id: u32§width: u16§height: u16Trait Implementations§
Source§impl Clone for QueryImageAttributes
impl Clone for QueryImageAttributes
Source§fn clone(&self) -> QueryImageAttributes
fn clone(&self) -> QueryImageAttributes
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 QueryImageAttributes
impl Debug for QueryImageAttributes
Source§impl RawRequest for QueryImageAttributes
impl RawRequest for QueryImageAttributes
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 QueryImageAttributes
impl Request for QueryImageAttributes
Source§impl RequestWithReply for QueryImageAttributes
impl RequestWithReply for QueryImageAttributes
Source§type Reply = QueryImageAttributesReply
type Reply = QueryImageAttributesReply
Reply associated with the request
Source§type Cookie = QueryImageAttributesCookie
type Cookie = QueryImageAttributesCookie
Default cookie type for the request, as returned by Connection::send_request.
Source§type CookieUnchecked = QueryImageAttributesCookieUnchecked
type CookieUnchecked = QueryImageAttributesCookieUnchecked
Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.
Auto Trait Implementations§
impl Freeze for QueryImageAttributes
impl RefUnwindSafe for QueryImageAttributes
impl Send for QueryImageAttributes
impl Sync for QueryImageAttributes
impl Unpin for QueryImageAttributes
impl UnwindSafe for QueryImageAttributes
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