matcher.rs 168 字节
Newer Older
P
Phodal Huang 已提交
1 2 3 4 5 6 7 8 9 10 11
pub enum MatchPriority {
    High,
    Medium,
    Low,
}

pub struct MatcherWithPriority {
    matcher: Matcher,
    priority: MatchPriority,
}

P
Phodal Huang 已提交
12
pub struct Matcher {}