(
mut self: Pin<&mut Self>,
cx: &mut Context<'_>,
)
| 786 | type Error = Box<dyn std::error::Error + Send + Sync>; |
| 787 | |
| 788 | fn poll_frame( |
| 789 | mut self: Pin<&mut Self>, |
| 790 | cx: &mut Context<'_>, |
| 791 | ) -> Poll<Option<Result<http_body::Frame<Self::Data>, Self::Error>>> { |
| 792 | Pin::new(&mut self.0).poll_frame(cx) |
| 793 | } |
| 794 | |
| 795 | fn is_end_stream(&self) -> bool { |
| 796 | self.0.is_end_stream() |