Steven Fackler
Steven Fackler
What about anonymous addresses?
I would interpret the time before the first byte of the header is read as idle time rather than read-header time, yeah. You can already make a wrapper around a...
The option I mentioned above could look something like ```rust pub trait Body { // existing API /// Determine if the body is still in a healthy state without polling...
I put together an implementation of this.
Yeah, should we rename it to `is_healthy`? We definitely need pass `Context` in though so you can poll timers or whatever.
Generally it'd only be used by Hyper. In the future we could implement it for Hyper's own body type so consumers could do the same kind of error short-circuiting, but...
What's the purpose of using assert_matches at all there?
How would the behavior of your test change if you removed that line?