pub trait ProviderWatcherProxyInterface: Send + Sync {
type OnPairingCompleteResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn on_pairing_complete(
&self,
id: &PeerId,
) -> Self::OnPairingCompleteResponseFut;
}