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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.