logo

Trait cucumber::Parameter[][src]

pub trait Parameter {
    const REGEX: &'static str;
    const NAME: &'static str;
}
Expand description

Custom parameter of a Cucumber Expression.

Should be implemented only with via Parameter derive macro.

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