Trait ISpellCheckProviderFactory_Impl
pub trait ISpellCheckProviderFactory_Impl: IUnknownImpl {
// Required methods
fn SupportedLanguages(&self) -> Result<IEnumString>;
fn IsSupported(&self, languagetag: &PCWSTR) -> Result<BOOL>;
fn CreateSpellCheckProvider(
&self,
languagetag: &PCWSTR,
) -> Result<ISpellCheckProvider>;
}
Required Methods§
fn SupportedLanguages(&self) -> Result<IEnumString>
fn IsSupported(&self, languagetag: &PCWSTR) -> Result<BOOL>
fn CreateSpellCheckProvider( &self, languagetag: &PCWSTR, ) -> Result<ISpellCheckProvider>
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.