Trait ChannelListenerProxyInterface

Source
pub trait ChannelListenerProxyInterface: Send + Sync {
    type AcceptResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn accept(
        &self,
        channel: ClientEnd<ChannelMarker>,
    ) -> Self::AcceptResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§