[][src]Enum twitch_api2::client::SurfError

pub enum SurfError {
    Surf(Error),
    InvalidHeaderValue(InvalidHeaderValue),
    InvalidHeaderName(InvalidHeaderName),
    UrlError(ParseError),
}
This is supported on crate feature client only.

Possible errors from Client::req() when using the surf client

Variants

Surf(Error)

surf failed to do the request: {0}

InvalidHeaderValue(InvalidHeaderValue)

could not construct header value

InvalidHeaderName(InvalidHeaderName)

could not construct header name

UrlError(ParseError)

uri could not be translated into an url.

Trait Implementations

impl Debug for SurfError[src]

impl Display for SurfError[src]

impl Error for SurfError[src]

impl From<InvalidHeaderName> for SurfError[src]

impl From<InvalidHeaderValue> for SurfError[src]

impl From<ParseError> for SurfError[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]