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]

[src]

Formats the value using the given formatter. Read more

impl Display for Canceled
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Canceled

impl Sync for Canceled