pub trait SequentialStreamExt: SequentialStream {
// Provided method
fn sendable(self) -> SendableSequentialStream
where Self: Sized + Send + 'static { ... }
}Provided Methods§
fn sendable(self) -> SendableSequentialStream
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".