Macros§
Structs§
- Code
Point MapRange - Represents a range of consecutive code points sharing the same value in a
code point map. The start and end of the interval is represented as a
RangeInclusive<u32>, and the value is represented asT. - Code
Point MapRange Iterator - A custom
Iteratortype specifically for a code point trie that returnsCodePointMapRanges. - Code
Point Trie - This struct represents a de-serialized
CodePointTriethat was exported from ICU binary data. - Code
Point Trie Header - This struct contains the fixed-length header fields of a
CodePointTrie.
Enums§
- Trie
Type - The type of trie represents whether the trie has an optimization that would make it smaller or faster.
Traits§
- Trie
Value - A trait representing the values stored in the data array of a
CodePointTrie. This trait is used as a type parameter in constructing aCodePointTrie.
Functions§
- maybe_
filter_ 🔒value - Helper function used by [
get_range]. Converts occurrences of trie’s null value into the providednull_value.