Trait buhtig::Teams[][src]

pub trait Teams {
    fn get_team_by_name<'life0, 'async_trait>(
        &'life0 self,
        input: GetTeamByNameRequest
    ) -> Pin<Box<dyn Future<Output = Result<GetTeamByNameResponse>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn list_team_repositories<'life0, 'async_trait>(
        &'life0 self,
        input: ListTeamRepositoriesRequest
    ) -> Pin<Box<dyn Future<Output = Result<ListTeamRepositoriesResponse>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn list_team_members<'life0, 'async_trait>(
        &'life0 self,
        input: ListTeamMembersRequest
    ) -> Pin<Box<dyn Future<Output = Result<ListTeamMembersResponse>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

Implementors