pub enum E2EError {
Platform(PlatformError),
Fixture(FixtureError),
Golden(GoldenError),
Container(ContainerError),
Runner(RunnerError),
Timeout(Duration),
Comparison(String),
Io(Error),
}Expand description
Top-level E2E error type
Variants§
Platform(PlatformError)
Fixture(FixtureError)
Golden(GoldenError)
Container(ContainerError)
Runner(RunnerError)
Timeout(Duration)
Comparison(String)
Io(Error)
Trait Implementations§
Source§impl Error for E2EError
impl Error for E2EError
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<ContainerError> for E2EError
impl From<ContainerError> for E2EError
Source§fn from(source: ContainerError) -> Self
fn from(source: ContainerError) -> Self
Converts to this type from the input type.
Source§impl From<FixtureError> for E2EError
impl From<FixtureError> for E2EError
Source§fn from(source: FixtureError) -> Self
fn from(source: FixtureError) -> Self
Converts to this type from the input type.
Source§impl From<GoldenError> for E2EError
impl From<GoldenError> for E2EError
Source§fn from(source: GoldenError) -> Self
fn from(source: GoldenError) -> Self
Converts to this type from the input type.
Source§impl From<PlatformError> for E2EError
impl From<PlatformError> for E2EError
Source§fn from(source: PlatformError) -> Self
fn from(source: PlatformError) -> Self
Converts to this type from the input type.
Source§impl From<RunnerError> for E2EError
impl From<RunnerError> for E2EError
Source§fn from(source: RunnerError) -> Self
fn from(source: RunnerError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for E2EError
impl !RefUnwindSafe for E2EError
impl Send for E2EError
impl Sync for E2EError
impl Unpin for E2EError
impl !UnwindSafe for E2EError
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