Trait proclet::MatchOpFn

source ·
pub trait MatchOpFn: Clone + Fn(&str, Option<char>) -> Match<Cow<'static, str>> { }
Expand description

Function for OpParser to use to match operators.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> MatchOpFn for T
where T: Clone + Fn(&str, Option<char>) -> Match<Cow<'static, str>>,