Type Definition httparse::Result [−][src]
type Result<T> = Result<Status<T>, Error>;
A Result of any parsing action.
If the input is invalid, an Error
will be returned. Note that incomplete
data is not considered invalid, and so will not return an error, but rather
a Ok(Status::Partial)
.