pub trait SinkExt<T>: Sink<T> {
// Required method
fn send_and_flush(
&mut self,
item: T,
) -> impl Future<Output = Result<(), Self::Error>>;
}
Expand description
Sink extensions.
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.