pub trait RealmFactoryProxyInterface: Send + Sync {
    type CreateRealmResponseFut: Future<Output = Result<RealmFactoryCreateRealmResult, Error>> + Send;

    // Required method
    fn create_realm(
        &self,
        options: RealmOptions,
    ) -> Self::CreateRealmResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§

source§

impl RealmFactoryProxyInterface for RealmFactoryProxy

§

type CreateRealmResponseFut = QueryResponseFut<Result<ClientEnd<DictionaryMarker>, OperationError>>