File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -565,7 +565,7 @@ impl<'a> From<&'a [u8]> for Body {
565
565
}
566
566
567
567
impl AsyncRead for Body {
568
- #[ allow( missing_doc_code_examples) ]
568
+ #[ allow( rustdoc :: missing_doc_code_examples) ]
569
569
fn poll_read (
570
570
mut self : Pin < & mut Self > ,
571
571
cx : & mut Context < ' _ > ,
@@ -589,7 +589,7 @@ impl AsyncRead for Body {
589
589
}
590
590
591
591
impl AsyncBufRead for Body {
592
- #[ allow( missing_doc_code_examples) ]
592
+ #[ allow( rustdoc :: missing_doc_code_examples) ]
593
593
fn poll_fill_buf ( self : Pin < & mut Self > , cx : & mut Context < ' _ > ) -> Poll < io:: Result < & ' _ [ u8 ] > > {
594
594
self . project ( ) . reader . poll_fill_buf ( cx)
595
595
}
Original file line number Diff line number Diff line change @@ -899,7 +899,7 @@ impl Clone for Request {
899
899
}
900
900
901
901
impl AsyncRead for Request {
902
- #[ allow( missing_doc_code_examples) ]
902
+ #[ allow( rustdoc :: missing_doc_code_examples) ]
903
903
fn poll_read (
904
904
mut self : Pin < & mut Self > ,
905
905
cx : & mut Context < ' _ > ,
@@ -910,7 +910,7 @@ impl AsyncRead for Request {
910
910
}
911
911
912
912
impl AsyncBufRead for Request {
913
- #[ allow( missing_doc_code_examples) ]
913
+ #[ allow( rustdoc :: missing_doc_code_examples) ]
914
914
fn poll_fill_buf ( self : Pin < & mut Self > , cx : & mut Context < ' _ > ) -> Poll < io:: Result < & ' _ [ u8 ] > > {
915
915
let this = self . project ( ) ;
916
916
this. body . poll_fill_buf ( cx)
Original file line number Diff line number Diff line change @@ -599,7 +599,7 @@ impl Clone for Response {
599
599
}
600
600
601
601
impl AsyncRead for Response {
602
- #[ allow( missing_doc_code_examples) ]
602
+ #[ allow( rustdoc :: missing_doc_code_examples) ]
603
603
fn poll_read (
604
604
mut self : Pin < & mut Self > ,
605
605
cx : & mut Context < ' _ > ,
@@ -610,7 +610,7 @@ impl AsyncRead for Response {
610
610
}
611
611
612
612
impl AsyncBufRead for Response {
613
- #[ allow( missing_doc_code_examples) ]
613
+ #[ allow( rustdoc :: missing_doc_code_examples) ]
614
614
fn poll_fill_buf ( self : Pin < & mut Self > , cx : & mut Context < ' _ > ) -> Poll < io:: Result < & ' _ [ u8 ] > > {
615
615
let this = self . project ( ) ;
616
616
this. body . poll_fill_buf ( cx)
You can’t perform that action at this time.
0 commit comments