pub trait Consumer<From> {
// Required method
fn with_receiver(previous: Receiver<From>, options: RunOptions) -> Self;
}Required Methods§
fn with_receiver(previous: Receiver<From>, options: RunOptions) -> 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.