Trait relay_pattern::PatternConfig
source · pub trait PatternConfig {
const CASE_INSENSITIVE: bool = false;
const MAX_COMPLEXITY: u64 = 18_446_744_073_709_551_615u64;
}
Expand description
Compile time configuration for a TypedPattern
.
Provided Associated Constants§
sourceconst CASE_INSENSITIVE: bool = false
const CASE_INSENSITIVE: bool = false
Configures the pattern to match case insensitive.
sourceconst MAX_COMPLEXITY: u64 = 18_446_744_073_709_551_615u64
const MAX_COMPLEXITY: u64 = 18_446_744_073_709_551_615u64
Configures the maximum allowed complexity of the pattern.
Object Safety§
This trait is not object safe.