@@ -105,7 +105,7 @@ pub trait DoubleEndedStream: Stream {
105
105
```
106
106
# fn main() { async_std::task::block_on(async {
107
107
#
108
- use async_std::stream::double_ended_stream::DoubleEndedStream ;
108
+ use async_std::prelude::* ;
109
109
use async_std::stream::from_iter;
110
110
111
111
let mut s = from_iter(vec![7u8]);
@@ -133,7 +133,7 @@ pub trait DoubleEndedStream: Stream {
133
133
```
134
134
# fn main() { async_std::task::block_on(async {
135
135
#
136
- use async_std::stream::double_ended_stream::DoubleEndedStream ;
136
+ use async_std::prelude::* ;
137
137
use async_std::stream::from_iter;
138
138
139
139
let mut s = from_iter(vec![1u8, 2, 3, 4, 5]);
@@ -161,7 +161,7 @@ pub trait DoubleEndedStream: Stream {
161
161
```
162
162
# fn main() { async_std::task::block_on(async {
163
163
#
164
- use async_std::stream::double_ended_stream::DoubleEndedStream ;
164
+ use async_std::prelude::* ;
165
165
use async_std::stream::from_iter;
166
166
167
167
let mut s = from_iter(vec![1u8, 2, 3, 4, 5]);
@@ -188,7 +188,7 @@ pub trait DoubleEndedStream: Stream {
188
188
```
189
189
# fn main() { async_std::task::block_on(async {
190
190
#
191
- use async_std::stream::double_ended_stream::DoubleEndedStream ;
191
+ use async_std::prelude::* ;
192
192
use async_std::stream::from_iter;
193
193
194
194
let s = from_iter(vec![1u8, 2, 3, 4, 5]);
@@ -219,7 +219,7 @@ pub trait DoubleEndedStream: Stream {
219
219
```
220
220
# fn main() { async_std::task::block_on(async {
221
221
#
222
- use async_std::stream::double_ended_stream::DoubleEndedStream ;
222
+ use async_std::prelude::* ;
223
223
use async_std::stream::from_iter;
224
224
225
225
let s = from_iter(vec![1u8, 2, 3, 4, 5]);
0 commit comments