pub enum RunSpecError {
ReadRunSpec(PathBuf, Error),
ParseRunSpec(PathBuf, Error),
Log(LogError),
}Variants§
Trait Implementations§
Source§impl Debug for RunSpecError
impl Debug for RunSpecError
Source§impl Display for RunSpecError
impl Display for RunSpecError
Source§impl Error for RunSpecError
impl Error for RunSpecError
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<LogError> for RunSpecError
impl From<LogError> for RunSpecError
Source§impl From<RunSpecError> for EngineError
impl From<RunSpecError> for EngineError
Source§fn from(source: RunSpecError) -> Self
fn from(source: RunSpecError) -> Self
Converts to this type from the input type.
Source§impl From<RunSpecError> for RunError
impl From<RunSpecError> for RunError
Source§fn from(source: RunSpecError) -> Self
fn from(source: RunSpecError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RunSpecError
impl !RefUnwindSafe for RunSpecError
impl Send for RunSpecError
impl Sync for RunSpecError
impl Unpin for RunSpecError
impl UnsafeUnpin for RunSpecError
impl !UnwindSafe for RunSpecError
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