pub fn from_slice<T: Send + 'static>( items: Vec<T>, ) -> impl Stream<Item = T> + Send + 'static
Create a stream from a Vec<T>.
Vec<T>