mirror of
https://github.com/async-rs/async-std.git
synced 2025-03-31 13:36:41 +00:00
15 lines
422 B
Rust
15 lines
422 B
Rust
use std::collections::LinkedList;
|
|
use std::pin::Pin;
|
|
|
|
use crate::prelude::*;
|
|
use crate::stream::{self, IntoStream};
|
|
|
|
impl<T> stream::Extend<T> for LinkedList<T> {
|
|
fn extend<'a, S: IntoStream<Item = T> + 'a>(
|
|
&'a mut self,
|
|
stream: S,
|
|
) -> Pin<Box<dyn Future<Output = ()> + 'a>> {
|
|
let stream = stream.into_stream();
|
|
Box::pin(stream.for_each(move |item| self.push_back(item)))
|
|
}
|
|
}
|