pub trait ChannelListenerProxyInterface: Send + Sync {
    type AcceptResponseFut: Future<Output = Result<(), Error>> + Send;
    // Required method
    fn accept(
        &self,
        channel: ClientEnd<ChannelMarker>,
    ) -> Self::AcceptResponseFut;
}