pub trait TypedConsumer {
// Required method
fn typed_consumer<F: TypedHandlerRegistrar>(self, factory: F) -> Self;
}
Required Methods§
fn typed_consumer<F: TypedHandlerRegistrar>(self, factory: F) -> Self
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.