pub trait HyphenationDataSource: Send + 'static {
// Required method
fn load(&mut self, lang: Language) -> Option<Standard>;
}Expand description
Represents a hyphenation dictionary source.
The data source must be registered in HYPHENATION.init_data_source.
Required Methods§
Implementors§
impl HyphenationDataSource for HyphenationDataDir
impl HyphenationDataSource for HyphenationDataEmbedded
Available on crate feature
hyphenation_embed_all only.