pub trait RealmFactoryProxyInterface: Send + Sync {
type CreateRealmResponseFut: Future<Output = Result<RealmFactoryCreateRealmResult, Error>> + Send;
// Required method
fn create_realm(
&self,
dictionary: EventPair,
) -> Self::CreateRealmResponseFut;
}Required Associated Types§
type CreateRealmResponseFut: Future<Output = Result<RealmFactoryCreateRealmResult, Error>> + Send
Required Methods§
fn create_realm(&self, dictionary: EventPair) -> Self::CreateRealmResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".