Trait cucumber_expressions::expand::parameters::Provider[][src]

pub trait Provider<Input> {
    type Item: AsChar;
    type Value: InputIter<Item = Self::Item>;
    fn get(&self, input: &Input) -> Option<Self::Value>;
}
Expand description

Provider of custom Parameters.

Associated Types

Value matcher to be used in a Regex.

Should be represented by a single Regex capturing group.

Required methods

Returns a Value matcher corresponding to the given input, if any.

Implementations on Foreign Types

Implementors