File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ if_std! {
102
102
#[ doc( hidden) ]
103
103
#[ deprecated( note = "removed without replacement, recommended to use a \
104
104
local extension trait or function if needed, more \
105
- details in # 228") ]
105
+ details in https://github.com/alexcrichton/futures-rs/issues/ 228") ]
106
106
pub type BoxFuture <T , E > = :: std:: boxed:: Box <Future <Item = T , Error = E > + Send >;
107
107
108
108
impl <F : ?Sized + Future > Future for :: std:: boxed:: Box <F > {
@@ -323,7 +323,7 @@ pub trait Future {
323
323
#[ doc( hidden) ]
324
324
#[ deprecated( note = "removed without replacement, recommended to use a \
325
325
local extension trait or function if needed, more \
326
- details in # 228") ]
326
+ details in https://github.com/alexcrichton/futures-rs/issues/ 228") ]
327
327
#[ allow( deprecated) ]
328
328
fn boxed ( self ) -> BoxFuture < Self :: Item , Self :: Error >
329
329
where Self : Sized + Send + ' static
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ if_std! {
124
124
#[ doc( hidden) ]
125
125
#[ deprecated( note = "removed without replacement, recommended to use a \
126
126
local extension trait or function if needed, more \
127
- details in # 228") ]
127
+ details in https://github.com/alexcrichton/futures-rs/issues/ 228") ]
128
128
pub type BoxStream <T , E > = :: std:: boxed:: Box <Stream <Item = T , Error = E > + Send >;
129
129
130
130
impl <S : ?Sized + Stream > Stream for :: std:: boxed:: Box <S > {
@@ -267,7 +267,7 @@ pub trait Stream {
267
267
#[ doc( hidden) ]
268
268
#[ deprecated( note = "removed without replacement, recommended to use a \
269
269
local extension trait or function if needed, more \
270
- details in # 228") ]
270
+ details in https://github.com/alexcrichton/futures-rs/issues/ 228") ]
271
271
#[ allow( deprecated) ]
272
272
fn boxed ( self ) -> BoxStream < Self :: Item , Self :: Error >
273
273
where Self : Sized + Send + ' static ,
You can’t perform that action at this time.
0 commit comments