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