Enum hypothesis::errors::HypothesisError[][src]

pub enum HypothesisError {
    APIError(APIError),
    HeaderError(InvalidHeaderValue),
    ReqwestError(Error),
    EnvironmentError {
        source: VarError,
        suggestion: String,
    },
    SerdeError(Error),
    URLError(ParseError),
    BuilderError(String),
}

Variants

APIError(APIError)
HeaderError(InvalidHeaderValue)
ReqwestError(Error)
EnvironmentError

Fields of EnvironmentError

source: VarErrorsuggestion: String
SerdeError(Error)
URLError(ParseError)
BuilderError(String)

Trait Implementations

impl Debug for HypothesisError[src]

impl Display for HypothesisError[src]

impl Error for HypothesisError[src]

impl From<APIError> for HypothesisError[src]

impl From<Error> for HypothesisError[src]

impl From<Error> for HypothesisError[src]

impl From<InvalidHeaderValue> for HypothesisError[src]

impl From<ParseError> for HypothesisError[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<E> InstrumentError for E where
    TracedError<E>: From<E>, 
[src]

type Instrumented = TracedError<E>

The type of the wrapped error after instrumentation

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

impl<D> OwoColorize for D

impl<T> SectionExt for T where
    T: Display + Send + Sync + 'static, 
[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.