pub trait AsyncDgramSendEx: AsyncDgramSend {
// Provided method
fn send<'a>(&'a self, buf: &'a [u8]) -> DgramSend<'a, Self> ⓘ
where Self: Unpin { ... }
}Expand description
Convenience trait that turns poll_send into an asynchronous function.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".