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§

source

type AcceptResponseFut: Future<Output = Result<(), Error>> + Send

Required Methods§

source

fn accept(&self, channel: ClientEnd<ChannelMarker>) -> Self::AcceptResponseFut

Implementors§