Trait gitlab::api::Query[][src]

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

A trait which represents a query which may be made to a GitLab client.

Required methods

Perform the query against the client.

Implementors