Trait icu_segmenter::complex::dictionary::DictionaryType
source · trait DictionaryType<'l, 's> {
type IterAttr: Iterator<Item = (usize, Self::CharType)> + Clone;
type CharType: Copy + Into<u32>;
// Required methods
fn to_char(c: Self::CharType) -> char;
fn char_len(c: Self::CharType) -> usize;
}
Expand description
A trait for dictionary based iterator
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.