pub trait CallbackProxyInterface: Send + Sync {
    type NewLinkResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn new_link(&self, socket: Socket) -> Self::NewLinkResponseFut;
}

Required Associated Types§

source

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

Required Methods§

Implementors§