Enum scan_rules::input::IgnoreAsciiCase [] [src]

pub enum IgnoreAsciiCase {}

Marker type used to do ASCII case-insensitive string comparisons.

Note that this is only correct for pure, ASCII-only strings. To get less incorrect case-insensitive comparisons, you will need to use a Unicode-aware comparison.

This exists because ASCII-only case conversions are easily understood and relatively fast.

Trait Implementations

impl Debug for IgnoreAsciiCase
[src]

Formats the value using the given formatter.

impl StrCompare for IgnoreAsciiCase
[src]

Compare two strings and return true if they should be considered "equal".