pub trait UtilOutputProcessor: Sync + Send + 'static {
    // Required methods
    fn get_device<'life0, 'async_trait>(
        &'life0 self,
        req: UtilGetDeviceOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<UtilGetDeviceOutputResponse>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_zone<'life0, 'async_trait>(
        &'life0 self,
        req: UtilGetZoneOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<UtilGetZoneOutputResponse>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn resolve_ood<'life0, 'async_trait>(
        &'life0 self,
        req: UtilResolveOODOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<UtilResolveOODOutputResponse>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_ood_status<'life0, 'async_trait>(
        &'life0 self,
        req: UtilGetOODStatusOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<UtilGetOODStatusOutputResponse>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_noc_info<'life0, 'async_trait>(
        &'life0 self,
        req: UtilGetNOCInfoOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<UtilGetNOCInfoOutputResponse>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_network_access_info<'life0, 'async_trait>(
        &'life0 self,
        req: UtilGetNetworkAccessInfoOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<UtilGetNetworkAccessInfoOutputResponse>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_device_static_info<'life0, 'async_trait>(
        &'life0 self,
        req: UtilGetDeviceStaticInfoOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<UtilGetDeviceStaticInfoOutputResponse>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_system_info<'life0, 'async_trait>(
        &'life0 self,
        req: UtilGetSystemInfoOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<UtilGetSystemInfoOutputResponse>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_version_info<'life0, 'async_trait>(
        &'life0 self,
        req: UtilGetVersionInfoOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<UtilGetVersionInfoOutputResponse>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn build_file_object<'life0, 'async_trait>(
        &'life0 self,
        req: UtilBuildFileOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<UtilBuildFileOutputResponse>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn build_dir_from_object_map<'life0, 'async_trait>(
        &'life0 self,
        req: UtilBuildDirFromObjectMapOutputRequest
    ) -> Pin<Box<dyn Future<Output = BuckyResult<UtilBuildDirFromObjectMapOutputResponse>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

Implementors§