pub trait ContextProviderProxyInterface: Send + Sync {
// Required method
fn create(
&self,
params: CreateContextParams,
context: ServerEnd<ContextMarker>,
) -> Result<(), Error>;
}Required Methods§
fn create( &self, params: CreateContextParams, context: ServerEnd<ContextMarker>, ) -> Result<(), Error>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".