regextrie 0.1.0

High-performance Rust library designed for matching a large number of regular expressions against a given input string
Documentation
1
2
3
4
5
6
7
/// Special error for the batch serialization
#[derive(Debug, thiserror::Error, Clone)]
pub enum RegexTrieError {
    /// When no columns are found in the specs
    #[error(transparent)]
    RegexCompilationFailed(Box<regex_automata::dfa::dense::BuildError>),
}