pub trait ProjectRelations {
    // Required methods
    fn owner<'life0, 'life1, 'async_trait>(
        &'life0 self,
        loaders: &'life1 SDKLoaders
    ) -> Pin<Box<dyn Future<Output = Result<Member, SDKError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn lead<'life0, 'life1, 'async_trait>(
        &'life0 self,
        loaders: &'life1 SDKLoaders
    ) -> Pin<Box<dyn Future<Output = Result<Member, SDKError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn tasks<'life0, 'life1, 'async_trait>(
        &'life0 self,
        loaders: &'life1 SDKLoaders
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Task>, SDKError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn members<'life0, 'life1, 'async_trait>(
        &'life0 self,
        loaders: &'life1 SDKLoaders
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Member>, SDKError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn assets<'life0, 'life1, 'async_trait>(
        &'life0 self,
        loaders: &'life1 SDKLoaders
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Asset>, SDKError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn teams<'life0, 'life1, 'async_trait>(
        &'life0 self,
        loaders: &'life1 SDKLoaders
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Team>, SDKError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn changes<'life0, 'life1, 'async_trait>(
        &'life0 self,
        loaders: &'life1 SDKLoaders
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Change>, SDKError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

source

fn owner<'life0, 'life1, 'async_trait>( &'life0 self, loaders: &'life1 SDKLoaders ) -> Pin<Box<dyn Future<Output = Result<Member, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn lead<'life0, 'life1, 'async_trait>( &'life0 self, loaders: &'life1 SDKLoaders ) -> Pin<Box<dyn Future<Output = Result<Member, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn tasks<'life0, 'life1, 'async_trait>( &'life0 self, loaders: &'life1 SDKLoaders ) -> Pin<Box<dyn Future<Output = Result<Vec<Task>, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn members<'life0, 'life1, 'async_trait>( &'life0 self, loaders: &'life1 SDKLoaders ) -> Pin<Box<dyn Future<Output = Result<Vec<Member>, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn assets<'life0, 'life1, 'async_trait>( &'life0 self, loaders: &'life1 SDKLoaders ) -> Pin<Box<dyn Future<Output = Result<Vec<Asset>, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn teams<'life0, 'life1, 'async_trait>( &'life0 self, loaders: &'life1 SDKLoaders ) -> Pin<Box<dyn Future<Output = Result<Vec<Team>, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn changes<'life0, 'life1, 'async_trait>( &'life0 self, loaders: &'life1 SDKLoaders ) -> Pin<Box<dyn Future<Output = Result<Vec<Change>, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§