pub trait IntoAsyncChannel {
// Required method
fn into_async_channel(self) -> AsyncChannel;
}Expand description
Wraps the channel provided in the open methods and provide convenience methods for sending
Required Methods§
fn into_async_channel(self) -> AsyncChannel
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
Source§impl IntoAsyncChannel for Channel
Available on non-crate feature fdomain only.
impl IntoAsyncChannel for Channel
Available on non-crate feature
fdomain only.