Trait buhtig::Repositories[][src]

pub trait Repositories {
    fn list_repositories<'life0, 'async_trait>(
        &'life0 self,
        input: ListRepositoriesRequest
    ) -> Pin<Box<dyn Future<Output = Result<ListRepositoriesResponse>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn get_commit<'life0, 'async_trait>(
        &'life0 self,
        input: GetCommitRequest
    ) -> Pin<Box<dyn Future<Output = Result<GetCommitResponse>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn get_repository_content<'life0, 'async_trait>(
        &'life0 self,
        input: GetRepositoryContentRequest
    ) -> Pin<Box<dyn Future<Output = Result<GetRepositoryContentResponse>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

Implementors