pub trait Client: RestClient {
    fn rest(
        &self,
        request: RequestBuilder,
        body: Vec<u8>
    ) -> Result<Response<Bytes>, ApiError<Self::Error>>; }
Expand description

A trait representing a client which can communicate with a GitLab instance.

Required methods

Send a REST query.

Implementors