Trait cyfs_util::acl::BdtDataAclProcessor
source · [−]pub trait BdtDataAclProcessor: Sync + Send {
fn get_data<'life0, 'async_trait>(
&'life0 self,
req: BdtGetDataInputRequest
) -> Pin<Box<dyn Future<Output = BuckyResult<()>> + Send + 'async_trait>>
where
'life0: 'async_trait,
Self: 'async_trait;
fn put_data<'life0, 'async_trait>(
&'life0 self,
req: BdtPutDataInputRequest
) -> Pin<Box<dyn Future<Output = BuckyResult<()>> + Send + 'async_trait>>
where
'life0: 'async_trait,
Self: 'async_trait;
fn delete_data<'life0, 'async_trait>(
&'life0 self,
req: BdtDeleteDataInputRequest
) -> Pin<Box<dyn Future<Output = BuckyResult<()>> + Send + 'async_trait>>
where
'life0: 'async_trait,
Self: 'async_trait;
}