pub trait ChannelMode<T>: Into<Broadcast<T>> {
type Next;
type Channel;
// Required method
fn finish(self, limit: Option<usize>) -> Self::Channel;
}
Expand description
A channel configuration.
Required Associated Types§
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.