pub enum GooseError {
Io(Error),
Reqwest(Error),
TokioJoin(JoinError),
Serde(Error),
FeatureNotEnabled {
feature: String,
detail: String,
},
InvalidHost {
host: String,
detail: String,
parse_error: ParseError,
},
InvalidOption {
option: String,
value: String,
detail: String,
},
InvalidWaitTime {
min_wait: Duration,
max_wait: Duration,
detail: String,
},
InvalidWeight {
weight: usize,
detail: String,
},
InvalidControllerCommand {
detail: String,
},
NoScenarios {
detail: String,
},
}Expand description
An enumeration of all errors a GooseAttack can return.
Variants§
Io(Error)
Wraps a std::io::Error.
Reqwest(Error)
Wraps a reqwest::Error.
TokioJoin(JoinError)
Wraps a ‘tokio::task::JoinError’.
Serde(Error)
Wraps a ‘serde_json::Error’.
FeatureNotEnabled
Failed attempt to use code that requires a compile-time feature be enabled.
Fields
InvalidHost
Failed to parse a hostname.
Fields
§
parse_error: ParseErrorWraps a url::ParseError.
InvalidOption
Invalid option or value specified, may only be invalid in context.
Fields
InvalidWaitTime
Invalid wait time specified.
InvalidWeight
Invalid weight specified.
InvalidControllerCommand
Invalid controller command.
NoScenarios
GooseAttack has no Scenario defined.
Trait Implementations§
Source§impl Debug for GooseError
impl Debug for GooseError
Source§impl Display for GooseError
Implement format trait to allow displaying errors.
impl Display for GooseError
Implement format trait to allow displaying errors.
Source§impl Error for GooseError
impl Error for GooseError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Error> for GooseError
Auto-convert Reqwest errors.
impl From<Error> for GooseError
Auto-convert Reqwest errors.
Source§fn from(err: Error) -> GooseError
fn from(err: Error) -> GooseError
Converts to this type from the input type.
Source§impl From<Error> for GooseError
Auto-convert IO errors.
impl From<Error> for GooseError
Auto-convert IO errors.
Source§fn from(err: Error) -> GooseError
fn from(err: Error) -> GooseError
Converts to this type from the input type.
Source§impl From<Error> for GooseError
Auto-convert serde_json errors.
impl From<Error> for GooseError
Auto-convert serde_json errors.
Source§fn from(err: Error) -> GooseError
fn from(err: Error) -> GooseError
Converts to this type from the input type.
Source§impl From<JoinError> for GooseError
Auto-convert TokioJoin errors.
impl From<JoinError> for GooseError
Auto-convert TokioJoin errors.
Source§fn from(err: JoinError) -> GooseError
fn from(err: JoinError) -> GooseError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GooseError
impl !RefUnwindSafe for GooseError
impl Send for GooseError
impl Sync for GooseError
impl Unpin for GooseError
impl !UnwindSafe for GooseError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.