Enum rocket::request::FormDataError
source · pub enum FormDataError<'f, E> {
Io(Error),
Malformed(&'f str),
Parse(E, &'f str),
}
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.
Malformed(&'f str)
The form string (in .0
) is malformed and was unable to be parsed as
HTTP application/x-www-form-urlencoded
data.
Parse(E, &'f str)
The form string (in .1
) failed to parse as the intended structure. The
error type in .0
contains further details.
Trait Implementations§
Auto Trait Implementations§
impl<'f, E> Freeze for FormDataError<'f, E>where
E: Freeze,
impl<'f, E> !RefUnwindSafe for FormDataError<'f, E>
impl<'f, E> Send for FormDataError<'f, E>where
E: Send,
impl<'f, E> Sync for FormDataError<'f, E>where
E: Sync,
impl<'f, E> Unpin for FormDataError<'f, E>where
E: Unpin,
impl<'f, E> !UnwindSafe for FormDataError<'f, E>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more