Struct tough::TransportError[][src]

pub struct TransportError { /* fields omitted */ }

The error type that Transport::fetch returns.

Implementations

impl TransportError[src]

pub fn new<S>(kind: TransportErrorKind, url: S) -> Self where
    S: AsRef<str>, 
[src]

Creates a new TransportError. Use this when there is no underlying error to wrap.

pub fn new_with_cause<S, E>(kind: TransportErrorKind, url: S, source: E) -> Self where
    E: Into<Box<dyn Error + Send + Sync>>,
    S: AsRef<str>, 
[src]

Creates a new TransportError. Use this to preserve an underlying error.

pub fn kind(&self) -> TransportErrorKind[src]

The type of Transport error that occurred.

pub fn url(&self) -> &str[src]

The URL that the Transport was trying to fetch when the error occurred.

Trait Implementations

impl Debug for TransportError[src]

impl Display for TransportError[src]

impl Error for TransportError[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> AsErrorSource for T where
    T: 'static + Error
[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, U> Into<U> for T where
    U: From<T>, 
[src]

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>,