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.
pub trait Query<T, C> where
C: Client, {
fn query(&self, client: &C) -> Result<T, ApiError<C::Error>>;
}
A trait which represents a query which may be made to a GitLab client.