pub trait ArrayStreamArrayExt: Array {
// Provided method
fn to_array_stream(&self) -> impl ArrayStream + 'static { ... }
}
Provided Methods§
Sourcefn to_array_stream(&self) -> impl ArrayStream + 'static
fn to_array_stream(&self) -> impl ArrayStream + 'static
Create an ArrayStream
over the array.
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.