pub trait ServerChannel<In: RpcMessage, Out: RpcMessage, T: ChannelTypes>: Debug + Clone + Send + Sync + 'static {
    fn accept_bi(&self) -> T::AcceptBiFuture<'_, In, Out>;
}
Expand description

An abstract server with typed input and output

Required Methods§

Accept a bidirectional stream

Implementors§