pub enum AdversariaError {
Config(String),
Provider(String),
Suite(String),
Plugin(String),
Io(Error),
Serialization(Error),
Yaml(Error),
Http(Error),
InvalidPayload(String),
ReportNotFound(String),
Unknown(String),
}Variants§
Config(String)
Provider(String)
Suite(String)
Plugin(String)
Io(Error)
Serialization(Error)
Yaml(Error)
Http(Error)
InvalidPayload(String)
ReportNotFound(String)
Unknown(String)
Trait Implementations§
Source§impl Debug for AdversariaError
impl Debug for AdversariaError
Source§impl Display for AdversariaError
impl Display for AdversariaError
Source§impl Error for AdversariaError
impl Error for AdversariaError
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 AdversariaError
impl From<Error> for AdversariaError
Source§impl From<Error> for AdversariaError
impl From<Error> for AdversariaError
Source§impl From<Error> for AdversariaError
impl From<Error> for AdversariaError
Auto Trait Implementations§
impl Freeze for AdversariaError
impl !RefUnwindSafe for AdversariaError
impl Send for AdversariaError
impl Sync for AdversariaError
impl Unpin for AdversariaError
impl UnsafeUnpin for AdversariaError
impl !UnwindSafe for AdversariaError
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