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 {
565565}
566566
567567impl AsyncRead for Body {
568- #[ allow( missing_doc_code_examples) ]
568+ #[ allow( rustdoc :: missing_doc_code_examples) ]
569569 fn poll_read (
570570 mut self : Pin < & mut Self > ,
571571 cx : & mut Context < ' _ > ,
@@ -589,7 +589,7 @@ impl AsyncRead for Body {
589589}
590590
591591impl AsyncBufRead for Body {
592- #[ allow( missing_doc_code_examples) ]
592+ #[ allow( rustdoc :: missing_doc_code_examples) ]
593593 fn poll_fill_buf ( self : Pin < & mut Self > , cx : & mut Context < ' _ > ) -> Poll < io:: Result < & ' _ [ u8 ] > > {
594594 self . project ( ) . reader . poll_fill_buf ( cx)
595595 }
Original file line number Diff line number Diff line change @@ -899,7 +899,7 @@ impl Clone for Request {
899899}
900900
901901impl AsyncRead for Request {
902- #[ allow( missing_doc_code_examples) ]
902+ #[ allow( rustdoc :: missing_doc_code_examples) ]
903903 fn poll_read (
904904 mut self : Pin < & mut Self > ,
905905 cx : & mut Context < ' _ > ,
@@ -910,7 +910,7 @@ impl AsyncRead for Request {
910910}
911911
912912impl AsyncBufRead for Request {
913- #[ allow( missing_doc_code_examples) ]
913+ #[ allow( rustdoc :: missing_doc_code_examples) ]
914914 fn poll_fill_buf ( self : Pin < & mut Self > , cx : & mut Context < ' _ > ) -> Poll < io:: Result < & ' _ [ u8 ] > > {
915915 let this = self . project ( ) ;
916916 this. body . poll_fill_buf ( cx)
Original file line number Diff line number Diff line change @@ -599,7 +599,7 @@ impl Clone for Response {
599599}
600600
601601impl AsyncRead for Response {
602- #[ allow( missing_doc_code_examples) ]
602+ #[ allow( rustdoc :: missing_doc_code_examples) ]
603603 fn poll_read (
604604 mut self : Pin < & mut Self > ,
605605 cx : & mut Context < ' _ > ,
@@ -610,7 +610,7 @@ impl AsyncRead for Response {
610610}
611611
612612impl AsyncBufRead for Response {
613- #[ allow( missing_doc_code_examples) ]
613+ #[ allow( rustdoc :: missing_doc_code_examples) ]
614614 fn poll_fill_buf ( self : Pin < & mut Self > , cx : & mut Context < ' _ > ) -> Poll < io:: Result < & ' _ [ u8 ] > > {
615615 let this = self . project ( ) ;
616616 this. body . poll_fill_buf ( cx)
You can’t perform that action at this time.
0 commit comments