LiveCmdHandleOP

Trait LiveCmdHandleOP 

Source
pub trait LiveCmdHandleOP: Send + Sync {
    // Required method
    fn handle<'life0, 'async_trait>(
        &'life0 self,
        proto: RawProto,
        params: CmdAgentParams,
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Proto数据处理

Required Methods§

Source

fn handle<'life0, 'async_trait>( &'life0 self, proto: RawProto, params: CmdAgentParams, ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§