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 for a Client
Perform the query against the Client