Struct hyper::error::Canceled
[−]
[src]
pub struct Canceled { /* fields omitted */ }
A pending item was dropped before ever being processed.
For example, a Request
could be queued in the Client
, just
as the related connection gets closed by the remote. In that case,
when the connection drops, the pending response future will be
fulfilled with this error, signaling the Request
was never started.
Trait Implementations
impl Debug for Canceled
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more