pub trait NONOutputProcessor: Sync + Send + 'static {
    // Required methods
    fn put_object<'life0, 'async_trait>(
        &'life0 self,
        req: NONPutObjectOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<NONPutObjectOutputResponse>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_object<'life0, 'async_trait>(
        &'life0 self,
        req: NONGetObjectOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<NONGetObjectOutputResponse>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn post_object<'life0, 'async_trait>(
        &'life0 self,
        req: NONPostObjectOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<NONPostObjectOutputResponse>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn select_object<'life0, 'async_trait>(
        &'life0 self,
        req: NONSelectObjectOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<NONSelectObjectOutputResponse>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn delete_object<'life0, 'async_trait>(
        &'life0 self,
        req: NONDeleteObjectOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<NONDeleteObjectOutputResponse>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn put_object<'life0, 'async_trait>( &'life0 self, req: NONPutObjectOutputRequest ) -> Pin<Box<dyn Future<Output = BuckyResult<NONPutObjectOutputResponse>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

source

fn get_object<'life0, 'async_trait>( &'life0 self, req: NONGetObjectOutputRequest ) -> Pin<Box<dyn Future<Output = BuckyResult<NONGetObjectOutputResponse>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

source

fn post_object<'life0, 'async_trait>( &'life0 self, req: NONPostObjectOutputRequest ) -> Pin<Box<dyn Future<Output = BuckyResult<NONPostObjectOutputResponse>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

source

fn select_object<'life0, 'async_trait>( &'life0 self, req: NONSelectObjectOutputRequest ) -> Pin<Box<dyn Future<Output = BuckyResult<NONSelectObjectOutputResponse>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

source

fn delete_object<'life0, 'async_trait>( &'life0 self, req: NONDeleteObjectOutputRequest ) -> Pin<Box<dyn Future<Output = BuckyResult<NONDeleteObjectOutputResponse>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Implementors§