actiondb 0.7.0

A safe and efficient unstructured text (log) parsing library.
Documentation
1
2
3
4
5
6
use matcher::Matcher;

pub trait MatcherFactory {
    type Matcher: Matcher;
    fn new_matcher() -> Self::Matcher;
}