pub struct TranslateCoordinates {
pub src_window: Window,
pub dst_window: Window,
pub src_x: i16,
pub src_y: i16,
}Expand description
The TranslateCoordinates request.
This request replies TranslateCoordinatesReply.
Associated cookie types are TranslateCoordinatesCookie and TranslateCoordinatesCookieUnchecked.
Fields§
§src_window: Window§dst_window: Window§src_x: i16§src_y: i16Trait Implementations§
Source§impl Clone for TranslateCoordinates
impl Clone for TranslateCoordinates
Source§fn clone(&self) -> TranslateCoordinates
fn clone(&self) -> TranslateCoordinates
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 TranslateCoordinates
impl Debug for TranslateCoordinates
Source§impl RawRequest for TranslateCoordinates
impl RawRequest for TranslateCoordinates
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 TranslateCoordinates
impl Request for TranslateCoordinates
Source§impl RequestWithReply for TranslateCoordinates
impl RequestWithReply for TranslateCoordinates
Source§type Reply = TranslateCoordinatesReply
type Reply = TranslateCoordinatesReply
Reply associated with the request
Source§type Cookie = TranslateCoordinatesCookie
type Cookie = TranslateCoordinatesCookie
Default cookie type for the request, as returned by Connection::send_request.
Source§type CookieUnchecked = TranslateCoordinatesCookieUnchecked
type CookieUnchecked = TranslateCoordinatesCookieUnchecked
Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.
Auto Trait Implementations§
impl Freeze for TranslateCoordinates
impl RefUnwindSafe for TranslateCoordinates
impl Send for TranslateCoordinates
impl Sync for TranslateCoordinates
impl Unpin for TranslateCoordinates
impl UnwindSafe for TranslateCoordinates
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