pub trait IntoMultiSender<A> {
// Required methods
fn as_multi_sender(self: &Arc<Self>) -> A;
fn into_multi_sender(self) -> A;
}
Expand description
A trait for converting something that implements individual senders into a multi-sender.
Required Methods§
fn as_multi_sender(self: &Arc<Self>) -> A
fn into_multi_sender(self) -> A
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.