pub struct QueryContext {
pub context: Context,
}Expand description
The QueryContext request.
This request replies QueryContextReply.
Associated cookie types are QueryContextCookie and QueryContextCookieUnchecked.
Fields§
§context: ContextTrait Implementations§
Source§impl Clone for QueryContext
impl Clone for QueryContext
Source§fn clone(&self) -> QueryContext
fn clone(&self) -> QueryContext
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 QueryContext
impl Debug for QueryContext
Source§impl RawRequest for QueryContext
impl RawRequest for QueryContext
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 QueryContext
impl Request for QueryContext
Source§impl RequestWithReply for QueryContext
impl RequestWithReply for QueryContext
Source§type Reply = QueryContextReply
type Reply = QueryContextReply
Reply associated with the request
Source§type Cookie = QueryContextCookie
type Cookie = QueryContextCookie
Default cookie type for the request, as returned by Connection::send_request.
Source§type CookieUnchecked = QueryContextCookieUnchecked
type CookieUnchecked = QueryContextCookieUnchecked
Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.
Auto Trait Implementations§
impl Freeze for QueryContext
impl RefUnwindSafe for QueryContext
impl Send for QueryContext
impl Sync for QueryContext
impl Unpin for QueryContext
impl UnsafeUnpin for QueryContext
impl UnwindSafe for QueryContext
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