1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//! Various matcher against record primitives.

pub use error::ParseMatcherError;
pub use occurrence::OccurrenceMatcher;
pub use operator::{BooleanOp, RelationalOp};
pub use options::MatcherOptions;
pub use quantifier::Quantifier;
pub use record::RecordMatcher;
pub use tag::TagMatcher;

mod error;
pub mod field;
mod occurrence;
mod operator;
mod options;
mod quantifier;
mod record;
pub mod subfield;
mod tag;