pub struct StepSpecError {
pub details: Vec<StepSpecErrorDetail>,
}Expand description
Error returned when validating step specifications.
Fields§
§details: Vec<StepSpecErrorDetail>Trait Implementations§
Source§impl Debug for StepSpecError
impl Debug for StepSpecError
Source§impl Display for StepSpecError
impl Display for StepSpecError
Source§impl Error for StepSpecError
impl Error for StepSpecError
1.30.0 · 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()
Auto Trait Implementations§
impl Freeze for StepSpecError
impl RefUnwindSafe for StepSpecError
impl Send for StepSpecError
impl Sync for StepSpecError
impl Unpin for StepSpecError
impl UnwindSafe for StepSpecError
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