Enum fancy_regex::RuntimeError
source · pub enum RuntimeError {
StackOverflow,
BacktrackLimitExceeded,
// some variants omitted
}
Expand description
An error as the result of executing a regex.
Variants§
StackOverflow
Max stack size exceeded for backtracking while executing regex.
BacktrackLimitExceeded
Max limit for backtracking count exceeded while executing the regex.
Configure using
RegexBuilder::backtrack_limit
.