pub trait Provider<Input> {
type Item: AsChar;
type Value: InputIter<Item = Self::Item>;
// Required method
fn get(&self, input: &Input) -> Option<Self::Value>;
}
Available on crate feature
into-regex
only.Expand description
Provider of custom Parameter
s.