pub trait TaskCrudOperations {
// Required methods
fn create_task<'life0, 'async_trait>(
&'life0 self,
input: CreateTaskInput
) -> Pin<Box<dyn Future<Output = Result<Task, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_task<'life0, 'async_trait>(
&'life0 self,
id: Uuid
) -> Pin<Box<dyn Future<Output = Result<Task, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_tasks<'life0, 'async_trait>(
&'life0 self,
input: GetTasksInput
) -> Pin<Box<dyn Future<Output = Result<Vec<Task>, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn update_task<'life0, 'async_trait>(
&'life0 self,
id: Uuid,
input: UpdateTaskInput
) -> Pin<Box<dyn Future<Output = Result<Task, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn delete_task<'life0, 'async_trait>(
&'life0 self,
id: Uuid
) -> Pin<Box<dyn Future<Output = Result<Task, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}