Enum cucumber_expressions::expand::Error [−][src]
pub enum Error<Input> where
Input: Display, {
Parsing(Error<Input>),
Expansion(UnknownParameterError<Input>),
Regex(Error),
}
Expand description
Possible errors while parsing Input
representing a
Cucumber Expression and expanding it into a Regex
.
Variants
Parsing(Error<Input>)
Tuple Fields
0: Error<Input>
Parsing error.
Expansion(UnknownParameterError<Input>)
Tuple Fields
0: UnknownParameterError<Input>
Expansion error.
Regex(Error)
Tuple Fields
0: Error
Regex
creation error.
Trait Implementations
Performs the conversion.
Auto Trait Implementations
impl<Input> RefUnwindSafe for Error<Input> where
Input: RefUnwindSafe,
impl<Input> UnwindSafe for Error<Input> where
Input: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more