Enum rocket::request::FormDataError [−][src]
Expand description
Error returned by the FromData implementations of
Form and LenientForm.
Variants
Io(Error)An I/O error occurred while reading reading the data stream. This can also mean that the form contained invalid UTF-8.
Tuple Fields of Io
0: ErrorMalformed(&'f str)The form string (in .0) is malformed and was unable to be parsed as
HTTP application/x-www-form-urlencoded data.
Tuple Fields of Malformed
0: &'f strParse(E, &'f str)The form string (in .1) failed to parse as the intended structure. The
error type in .0 contains further details.
Tuple Fields of Parse
0: E1: &'f str