pub trait MembersExtensionOperations {
    // Required methods
    fn create_member_from_github<'life0, 'async_trait>(
        &'life0 self,
        input: CreateMemberFromGithubInput
    ) -> Pin<Box<dyn Future<Output = Result<Member, SDKError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn create_member_from_email<'life0, 'async_trait>(
        &'life0 self,
        input: CreateMemberFromEmailInput
    ) -> Pin<Box<dyn Future<Output = Result<Member, SDKError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_member_by_github_id<'life0, 'async_trait>(
        &'life0 self,
        github_id: String
    ) -> Pin<Box<dyn Future<Output = Result<Member, SDKError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_member_by_email<'life0, 'async_trait>(
        &'life0 self,
        email: String
    ) -> Pin<Box<dyn Future<Output = Result<Member, SDKError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn create_member_from_github<'life0, 'async_trait>( &'life0 self, input: CreateMemberFromGithubInput ) -> Pin<Box<dyn Future<Output = Result<Member, SDKError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

source

fn create_member_from_email<'life0, 'async_trait>( &'life0 self, input: CreateMemberFromEmailInput ) -> Pin<Box<dyn Future<Output = Result<Member, SDKError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

source

fn get_member_by_github_id<'life0, 'async_trait>( &'life0 self, github_id: String ) -> Pin<Box<dyn Future<Output = Result<Member, SDKError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

source

fn get_member_by_email<'life0, 'async_trait>( &'life0 self, email: String ) -> Pin<Box<dyn Future<Output = Result<Member, SDKError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Implementors§