pub trait ContextProviderProxyInterface: Send + Sync {
    // Required method
    fn create(
        &self,
        params: CreateContextParams,
        context: ServerEnd<ContextMarker>
    ) -> Result<(), Error>;
}

Required Methods§

source

fn create( &self, params: CreateContextParams, context: ServerEnd<ContextMarker> ) -> Result<(), Error>

Implementors§