pub trait ProjectClient {
// Required methods
fn get_default_project<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Project, Error<ProjectError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_projects<'life0, 'life1, 'async_trait>(
&'life0 self,
project_name: Option<&'life1 str>,
) -> Pin<Box<dyn Future<Output = Result<Vec<Project>, Error<ProjectError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn create_project<'life0, 'life1, 'async_trait>(
&'life0 self,
value: &'life1 ProjectDataRequest,
) -> Pin<Box<dyn Future<Output = Result<Project, Error<ProjectError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn get_project<'life0, 'life1, 'async_trait>(
&'life0 self,
project_id: &'life1 Uuid,
) -> Pin<Box<dyn Future<Output = Result<Project, Error<ProjectError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn delete_project<'life0, 'life1, 'async_trait>(
&'life0 self,
project_id: &'life1 Uuid,
) -> Pin<Box<dyn Future<Output = Result<DeleteProjectResponse, Error<ProjectError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn get_project_actions<'life0, 'life1, 'async_trait>(
&'life0 self,
project_id: &'life1 Uuid,
) -> Pin<Box<dyn Future<Output = Result<Vec<ProjectAction>, Error<ProjectError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}