pub trait MappingProviderProxyInterface: Send + Sync {
type OpenSessionResponseFut: Future<Output = Result<MappingProviderOpenSessionResult, Error>> + Send;
// Required method
fn open_session(
&self,
session: ServerEnd<MappingSessionMarker>,
) -> Self::OpenSessionResponseFut;
}Required Associated Types§
type OpenSessionResponseFut: Future<Output = Result<MappingProviderOpenSessionResult, Error>> + Send
Required Methods§
fn open_session( &self, session: ServerEnd<MappingSessionMarker>, ) -> Self::OpenSessionResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".