Trait gitlab_client::GitlabClient
source · pub trait GitlabClient<Cx>: Send + Sync {
type Error<'req>
where Cx: 'req;
// Required method
fn get_project_list(
self,
query: &GetProjectListQuery<Cx>
) -> impl Send + Future<Output = Result<Page<Project>, Self::Error<'_>>>;
}Required Associated Types§
Required Methods§
fn get_project_list( self, query: &GetProjectListQuery<Cx> ) -> impl Send + Future<Output = Result<Page<Project>, Self::Error<'_>>>
Object Safety§
This trait is not object safe.