pub trait Client: RestClient { // Required method fn rest( &self, request: Request<Vec<u8>>, ) -> Result<Response<Bytes>, APIError<Self::Error>>; }
A trait representing a client.
Send a REST query.