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

    // Required method
    fn connect_proxy_(
        &self,
        interface: ServerEnd<ProfileMarker>
    ) -> Self::ConnectProxy_ResponseFut;
}

Required Associated Types§

Required Methods§

source

fn connect_proxy_( &self, interface: ServerEnd<ProfileMarker> ) -> Self::ConnectProxy_ResponseFut

Implementors§