Convert the response into a `Stream` of `Bytes` from the body.
(&self, py: Python)
| 139 | |
| 140 | /// Convert the response into a `Stream` of `Bytes` from the body. |
| 141 | pub fn stream(&self, py: Python) -> PyResult<BlockingStreamer> { |
| 142 | self.0.stream(py).map(BlockingStreamer) |
| 143 | } |
| 144 | |
| 145 | /// Closes the response connection. |
| 146 | pub fn close(&self, py: Python) -> PyResult<()> { |
no outgoing calls