jackxbritton

Results 2 issues of jackxbritton

Hey folks, this code panics. The feature is documented [here](https://docs.rs/fastly/0.6.0/fastly/http/struct.Response.html#method.stream_to_client). ```rust pub fn main() -> Result { let resp = Response::new(); let mut writer = resp.stream_to_client(); writer.write_str("asdf"); Ok(()) } ```