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;
}