Trait buhtig::Teams

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

Required Methods§

source

fn get_team_by_name<'life0, 'async_trait>( &'life0 self, input: GetTeamByNameRequest ) -> Pin<Box<dyn Future<Output = Result<GetTeamByNameResponse>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

source

fn list_team_repositories<'life0, 'async_trait>( &'life0 self, input: ListTeamRepositoriesRequest ) -> Pin<Box<dyn Future<Output = Result<ListTeamRepositoriesResponse>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

source

fn list_team_members<'life0, 'async_trait>( &'life0 self, input: ListTeamMembersRequest ) -> Pin<Box<dyn Future<Output = Result<ListTeamMembersResponse>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Implementors§