[][src]Enum rocket::request::FormDataError

pub enum FormDataError<'f, E> {
    Io(Error),
    Malformed(&'f str),
    Parse(E, &'f str),
}

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

impl<'f, E: Debug> Debug for FormDataError<'f, E>[src]

Auto Trait Implementations

impl<'f, E> Send for FormDataError<'f, E> where
    E: Send

impl<'f, E> Sync for FormDataError<'f, E> where
    E: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> IntoCollection for T[src]

impl<T, I> AsResult for T where
    I: Input
[src]