1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
use crate::task::{self, Poll};
use core::marker::Unpin;
use core::pin::PinMut;
#[cfg(feature = "either")]
use either::Either;
mod stream_obj;
pub use self::stream_obj::{StreamObj,LocalStreamObj,UnsafeStreamObj};
pub trait Stream {
type Item;
fn poll_next(
self: PinMut<Self>,
cx: &mut task::Context,
) -> Poll<Option<Self::Item>>;
}
impl<'a, S: ?Sized + Stream + Unpin> Stream for &'a mut S {
type Item = S::Item;
fn poll_next(
mut self: PinMut<Self>,
cx: &mut task::Context,
) -> Poll<Option<Self::Item>> {
S::poll_next(PinMut::new(&mut **self), cx)
}
}
impl<'a, S: ?Sized + Stream> Stream for PinMut<'a, S> {
type Item = S::Item;
fn poll_next(
mut self: PinMut<Self>,
cx: &mut task::Context,
) -> Poll<Option<Self::Item>> {
S::poll_next((*self).reborrow(), cx)
}
}
#[cfg(feature = "either")]
impl<A, B> Stream for Either<A, B>
where A: Stream,
B: Stream<Item = A::Item>
{
type Item = A::Item;
fn poll_next(self: PinMut<Self>, cx: &mut task::Context) -> Poll<Option<A::Item>> {
unsafe {
match PinMut::get_mut_unchecked(self) {
Either::Left(a) => PinMut::new_unchecked(a).poll_next(cx),
Either::Right(b) => PinMut::new_unchecked(b).poll_next(cx),
}
}
}
}
pub trait TryStream {
type Ok;
type Error;
fn try_poll_next(self: PinMut<Self>, cx: &mut task::Context)
-> Poll<Option<Result<Self::Ok, Self::Error>>>;
}
impl<S, T, E> TryStream for S
where S: Stream<Item = Result<T, E>>
{
type Ok = T;
type Error = E;
fn try_poll_next(self: PinMut<Self>, cx: &mut task::Context)
-> Poll<Option<Result<Self::Ok, Self::Error>>>
{
self.poll_next(cx)
}
}
if_std! {
use std::boxed::Box;
use std::pin::PinBox;
impl<S: ?Sized + Stream + Unpin> Stream for Box<S> {
type Item = S::Item;
fn poll_next(
mut self: PinMut<Self>,
cx: &mut task::Context,
) -> Poll<Option<Self::Item>> {
PinMut::new(&mut **self).poll_next(cx)
}
}
impl<S: ?Sized + Stream> Stream for PinBox<S> {
type Item = S::Item;
fn poll_next(
mut self: PinMut<Self>,
cx: &mut task::Context,
) -> Poll<Option<Self::Item>> {
self.as_pin_mut().poll_next(cx)
}
}
impl<S: Stream> Stream for ::std::panic::AssertUnwindSafe<S> {
type Item = S::Item;
fn poll_next(
self: PinMut<Self>,
cx: &mut task::Context,
) -> Poll<Option<S::Item>> {
unsafe { PinMut::map_unchecked(self, |x| &mut x.0) }.poll_next(cx)
}
}
impl<T: Unpin> Stream for ::std::collections::VecDeque<T> {
type Item = T;
fn poll_next(
mut self: PinMut<Self>,
_cx: &mut task::Context,
) -> Poll<Option<Self::Item>> {
Poll::Ready(self.pop_front())
}
}
}