[][src]Struct tower_web::extract::Error

pub struct Error { /* fields omitted */ }

Errors that can happen while extracting data from an HTTP request.

Methods

impl Error[src]

pub fn missing_argument() -> Error[src]

The data is missing from the HTTP request.

pub fn is_missing_argument(&self) -> bool[src]

Returns true when the error represents missing data from the HTTP request.

pub fn invalid_argument<T: ToString>(reason: &T) -> Error[src]

The data is in an invalid format and cannot be extracted.

pub fn is_invalid_argument(&self) -> bool[src]

Returns true when the data is in an invalid format and cannot be extracted.

Trait Implementations

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl Debug for Error[src]

Auto Trait Implementations

impl Send for Error

impl Sync for Error

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> 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Erased for T