pub enum FixtureError {
NotFound(PathBuf),
InvalidManifest(String),
MissingFile(PathBuf),
CopyFailed(String),
Io(Error),
Configuration(String),
}Expand description
Test fixture loading and validation errors
Variants§
NotFound(PathBuf)
InvalidManifest(String)
MissingFile(PathBuf)
CopyFailed(String)
Io(Error)
Configuration(String)
Trait Implementations§
Source§impl Debug for FixtureError
impl Debug for FixtureError
Source§impl Display for FixtureError
impl Display for FixtureError
Source§impl Error for FixtureError
impl Error for FixtureError
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 FixtureError
impl From<Error> for FixtureError
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.
Auto Trait Implementations§
impl Freeze for FixtureError
impl !RefUnwindSafe for FixtureError
impl Send for FixtureError
impl Sync for FixtureError
impl Unpin for FixtureError
impl !UnwindSafe for FixtureError
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