pub enum TransactionError {
    Reqwest(Error),
    Url(ParseError),
    RequestFailed {
        raw_request: GooseRequestMetric,
    },
    RequestCanceled {
        source: SendError<bool>,
    },
    MetricsFailed {
        source: SendError<GooseMetric>,
    },
    LoggerFailed {
        source: SendError<Option<GooseLog>>,
    },
    InvalidMethod {
        method: Method,
    },
}
Expand description

An enumeration of all errors a Transaction can return.

Variants§

§

Reqwest(Error)

Wraps a reqwest::Error.

§

Url(ParseError)

Wraps a url::ParseError.

§

RequestFailed

Fields

§raw_request: GooseRequestMetric

The GooseRequestMetric that failed.

The request failed.

§

RequestCanceled

Fields

§source: SendError<bool>

Wraps a flume::SendError, a GooseRequestMetric has not yet been constructed.

The request was canceled. This happens when the throttle is enabled and the load test finishes.

§

MetricsFailed

Fields

§source: SendError<GooseMetric>

Wraps a flume::SendError, which contains the GooseMetric that wasn’t sent.

There was an error sending the metrics for a request to the parent thread.

§

LoggerFailed

Fields

§source: SendError<Option<GooseLog>>

Wraps a flume::SendError, which contains the GooseDebug that wasn’t sent.

There was an error sending debug information to the logger thread.

§

InvalidMethod

Fields

§method: Method

The unrecognized HTTP request method.

Attempted an unrecognized HTTP request method.

Trait Implementations§

Formats the value using the given formatter. Read more

Implement format trait to allow displaying errors.

Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
👎Deprecated since 1.42.0: use the Display impl or to_string()
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

Auto-convert Reqwest errors.

Converts to this type from the input type.

Auto-convert Url errors.

Converts to this type from the input type.

Attempt to send metrics to the parent thread failed.

Converts to this type from the input type.

Attempt to send logs to the logger thread failed.

Converts to this type from the input type.

When the throttle is enabled and the load test ends, the throttle channel is shut down. This causes a flume::SendError, which gets automatically converted to RequestCanceled. RequestCanceled

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more
Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more
Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s. Read more
Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s. Read more
Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

🔬This is a nightly-only experimental API. (provide_any)
Data providers should implement this method to provide all values they are able to provide by using demand. Read more
Should always be Self
Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more