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