pub trait RealmProxyInterface: Send + Sync {
type StartResponseFut: Future<Output = Result<RealmStartResult, Error>> + Send;
// Required method
fn start(&self, args: RealmArgs) -> Self::StartResponseFut;
}
pub trait RealmProxyInterface: Send + Sync {
type StartResponseFut: Future<Output = Result<RealmStartResult, Error>> + Send;
// Required method
fn start(&self, args: RealmArgs) -> Self::StartResponseFut;
}