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