Trait brr::api::BuildRecall[][src]

pub trait BuildRecall {
    fn login<'life0, 'async_trait>(
        &'life0 self,
        body: LoginRequestBody
    ) -> Pin<Box<dyn Future<Output = Result<LoginRequestResponseBody>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn list_projects<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Project>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn create_project<'life0, 'async_trait>(
        &'life0 self,
        slug: String
    ) -> Pin<Box<dyn Future<Output = Result<Project>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn invite<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<OrgInvite>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn pull_project<'life0, 'async_trait>(
        &'life0 self,
        args: PullQueryParams
    ) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn set_secret<'life0, 'async_trait>(
        &'life0 self,
        project_slug: String,
        secret_slug: String,
        value: String
    ) -> Pin<Box<dyn Future<Output = Result<ProjectSecret>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

Implementors