[][src]Trait fizyr_rpc::ServerListener

pub trait ServerListener: Listener + Unpin { }

Helper trait for Server.

This trait encapsulates all requirements for the Listener type of a Server.

The trait has a blanket implementation, so you can not implement it for your own types.

You can use it as trait bound for generic arguments, but you should not rely on any of the items in this trait.

Implementors

impl<Listener> ServerListener for Listener where
    Listener: Listener + Unpin,
    Listener::Connection: IntoTransport
[src]

type Body = <Listener::Connection as IntoTransport>::Body

type Config = <Listener::Connection as IntoTransport>::Config

type Transport = <Listener::Connection as IntoTransport>::Transport

Loading content...