pub trait SequentialArrayStreamExt: ArrayStream {
// Provided method
fn sequenced(self, pointer: SequencePointer) -> SendableSequentialStream
where Self: Sized + Send + 'static { ... }
}Provided Methods§
Sourcefn sequenced(self, pointer: SequencePointer) -> SendableSequentialStream
fn sequenced(self, pointer: SequencePointer) -> SendableSequentialStream
Converts the stream to a SendableSequentialStream.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".