Trait IUserDictionariesRegistrar_Impl
pub trait IUserDictionariesRegistrar_Impl: IUnknownImpl {
// Required methods
fn RegisterUserDictionary(
&self,
dictionarypath: &PCWSTR,
languagetag: &PCWSTR,
) -> Result<()>;
fn UnregisterUserDictionary(
&self,
dictionarypath: &PCWSTR,
languagetag: &PCWSTR,
) -> Result<()>;
}
Required Methods§
fn RegisterUserDictionary( &self, dictionarypath: &PCWSTR, languagetag: &PCWSTR, ) -> Result<()>
fn UnregisterUserDictionary( &self, dictionarypath: &PCWSTR, languagetag: &PCWSTR, ) -> Result<()>
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.