pub trait CallbackProxyInterface: Send + Sync {
type NewLinkResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn new_link(&self, socket: Socket) -> Self::NewLinkResponseFut;
}
pub trait CallbackProxyInterface: Send + Sync {
type NewLinkResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn new_link(&self, socket: Socket) -> Self::NewLinkResponseFut;
}