Trait ISpellCheckerFactory_Impl
pub trait ISpellCheckerFactory_Impl: IUnknownImpl {
// 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>
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.