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

Required Methods

Implementors