[][src]Module iron::error

Iron's error type and associated utilities.

Structs

IronError

The type of Errors inside and when using Iron.

Enums

HttpError

A set of errors that can occur parsing HTTP streams.

Traits

Error

Error is a trait representing the basic expectations for error values, i.e., values of type E in Result<T, E>. Errors must describe themselves through the Display and Debug traits, and may provide cause chain information:

Type Definitions

HttpResult

Result type often returned from methods that can have hyper Errors.