pub trait ISpellCheckerFactory_Impl: Sized {
    // Required methods
    fn SupportedLanguages(&self) -> Result<IEnumString>;
    fn IsSupported(&self, languagetag: &PCWSTR) -> Result<BOOL>;
    fn CreateSpellChecker(&self, languagetag: &PCWSTR) -> Result<ISpellChecker>;
}

Required Methods§

fn SupportedLanguages(&self) -> Result<IEnumString>

fn IsSupported(&self, languagetag: &PCWSTR) -> Result<BOOL>

fn CreateSpellChecker(&self, languagetag: &PCWSTR) -> Result<ISpellChecker>

Object Safety§

This trait is not object safe.

Implementors§