pub trait MiddlewareFactory<Context> {
type Handler;
// Required method
fn create(&self, context: &Context) -> Self::Handler;
}Expand description
Creates one isolated handler synchronously for a new connection.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".