logo
pub trait Parameter {
    const REGEX: &'static str;
    const NAME: &'static str;
}
Available on crate feature macros only.
Expand description

Custom parameter of a Cucumber Expression.

Should be implemented only with via Parameter derive macro.

Required Associated Constants

Regex matching this Parameter.

Shouldn’t contain any capturing groups.

Validated during Parameter derive macro expansion.

Name of this Parameter to be referenced by in Cucumber Expressions.

Implementors