pub trait TaskRelations {
// 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 project<'life0, 'life1, 'async_trait>(
&'life0 self,
loaders: &'life1 SDKLoaders
) -> Pin<Box<dyn Future<Output = Result<Option<Project>, 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<Option<Member>, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn parent<'life0, 'life1, 'async_trait>(
&'life0 self,
loaders: &'life1 SDKLoaders
) -> Pin<Box<dyn Future<Output = Result<Option<Task>, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn assignees<'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 labels<'life0, 'life1, 'async_trait>(
&'life0 self,
loaders: &'life1 SDKLoaders
) -> Pin<Box<dyn Future<Output = Result<Vec<Label>, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn subtasks<'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 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;
}