pub trait MultiConsumer<T>: Consumer<T> + Clone { }Expand description
A consumer of a multi-consumer queue.
If the queue is spmc, the SPMCProducer
read methods work faster, and you should use them when
it is possible.
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.