pub trait Query<T, C>where C: Client,{ // Required method fn query(&self, client: &C) -> Result<T, ApiError<C::Error>>; }
A trait which represents a query which may be made to a client.
Perform the query against the client.