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§

source

const CASE_INSENSITIVE: bool = false

Configures the pattern to match case insensitive.

source

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.

Implementors§