pub trait Project {
// Required methods
fn get_default_project<'life0, 'life1, 'async_trait>(
&'life0 self,
authorization: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<Project, ProjectError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn get_projects<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
project_name: Option<&'life1 str>,
authorization: &'life2 str
) -> Pin<Box<dyn Future<Output = Result<Vec<Project>, ProjectError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn post_project<'life0, 'life1, 'async_trait>(
&'life0 self,
field0: ProjectDataRequest,
authorization: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<Project, ProjectError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn get_project<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
project_id: &'life1 str,
authorization: &'life2 str
) -> Pin<Box<dyn Future<Output = Result<Project, ProjectError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn delete_project<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
project_id: &'life1 str,
authorization: &'life2 str
) -> Pin<Box<dyn Future<Output = Result<(), ProjectError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
}