pub struct GetImage {
pub format: ImageFormat,
pub drawable: Drawable,
pub x: i16,
pub y: i16,
pub width: u16,
pub height: u16,
pub plane_mask: u32,
}Expand description
The GetImage request.
This request replies GetImageReply.
Associated cookie types are GetImageCookie and GetImageCookieUnchecked.
Fields§
§format: ImageFormat§drawable: Drawable§x: i16§y: i16§width: u16§height: u16§plane_mask: u32Trait Implementations§
Source§impl RawRequest for GetImage
impl RawRequest for GetImage
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 RequestWithReply for GetImage
impl RequestWithReply for GetImage
Source§type Reply = GetImageReply
type Reply = GetImageReply
Reply associated with the request
Source§type Cookie = GetImageCookie
type Cookie = GetImageCookie
Default cookie type for the request, as returned by Connection::send_request.
Source§type CookieUnchecked = GetImageCookieUnchecked
type CookieUnchecked = GetImageCookieUnchecked
Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.
Auto Trait Implementations§
impl Freeze for GetImage
impl RefUnwindSafe for GetImage
impl Send for GetImage
impl Sync for GetImage
impl Unpin for GetImage
impl UnwindSafe for GetImage
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