pub struct QueryBestSize {
pub port: Port,
pub vid_w: u16,
pub vid_h: u16,
pub drw_w: u16,
pub drw_h: u16,
pub motion: bool,
}Expand description
The QueryBestSize request.
This request replies QueryBestSizeReply.
Associated cookie types are QueryBestSizeCookie and QueryBestSizeCookieUnchecked.
Fields§
§port: Port§vid_w: u16§vid_h: u16§drw_w: u16§drw_h: u16§motion: boolTrait Implementations§
Source§impl Clone for QueryBestSize
impl Clone for QueryBestSize
Source§fn clone(&self) -> QueryBestSize
fn clone(&self) -> QueryBestSize
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 QueryBestSize
impl Debug for QueryBestSize
Source§impl RawRequest for QueryBestSize
impl RawRequest for QueryBestSize
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 QueryBestSize
impl Request for QueryBestSize
Source§impl RequestWithReply for QueryBestSize
impl RequestWithReply for QueryBestSize
Source§type Reply = QueryBestSizeReply
type Reply = QueryBestSizeReply
Reply associated with the request
Source§type Cookie = QueryBestSizeCookie
type Cookie = QueryBestSizeCookie
Default cookie type for the request, as returned by Connection::send_request.
Source§type CookieUnchecked = QueryBestSizeCookieUnchecked
type CookieUnchecked = QueryBestSizeCookieUnchecked
Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.
Auto Trait Implementations§
impl Freeze for QueryBestSize
impl RefUnwindSafe for QueryBestSize
impl Send for QueryBestSize
impl Sync for QueryBestSize
impl Unpin for QueryBestSize
impl UnwindSafe for QueryBestSize
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