pub trait RtcUpdatesProxyInterface: Send + Sync {
type GetResponseFut: Future<Output = Result<RtcUpdatesGetResult, Error>> + Send;
// Required method
fn get(&self, payload: GetRequest) -> Self::GetResponseFut;
}
pub trait RtcUpdatesProxyInterface: Send + Sync {
type GetResponseFut: Future<Output = Result<RtcUpdatesGetResult, Error>> + Send;
// Required method
fn get(&self, payload: GetRequest) -> Self::GetResponseFut;
}