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