pub trait ServiceFactory<Stream: FromStream>:
Send
+ Clone
+ 'static {
type Factory: ServiceFactory<Config = (), Request = Stream>;
// Required method
fn create(&self) -> Self::Factory;
}
Required Associated Types§
type Factory: ServiceFactory<Config = (), Request = Stream>
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.