pub trait Service:
Send
+ Sync
+ AnySync {
// Required method
fn handle<'a>(
&'a self,
_ss: &'a Arc<Session>,
_pack: Packet,
) -> ServiceResult<'a>;
}Expand description
The service object, for RPC method handling