pub trait QrtrConnectorProxyInterface: Send + Sync {
type GetConnectionResponseFut: Future<Output = Result<QrtrConnectorGetConnectionResult, Error>> + Send;
// Required method
fn get_connection(
&self,
options: &ConnectionOptions,
proxy: ServerEnd<QrtrClientConnectionMarker>,
) -> Self::GetConnectionResponseFut;
}