pub trait Query<T, C>where
C: Client,{
// Required method
fn query(&self, client: &C) -> Result<T, ApiError<C::Error>>;
}Expand description
Query made to a client.
pub trait Query<T, C>where
C: Client,{
// Required method
fn query(&self, client: &C) -> Result<T, ApiError<C::Error>>;
}Query made to a client.