pub trait ServerRequestHandler: Send + Sync {
    fn get_handler(
        &self,
        message: SomeIpPacket
    ) -> BoxFuture<'static, Option<SomeIpPacket>>; }

Required Methods

Return a boxed future that can be used to dispatch this message

Implementors