Trait ISpCFGInterpreter_Impl
pub trait ISpCFGInterpreter_Impl: IUnknownImpl {
// Required methods
fn InitGrammar(
&self,
pszgrammarname: &PCWSTR,
pvgrammardata: *const *const c_void,
) -> Result<()>;
fn Interpret(
&self,
pphrase: Ref<'_, ISpPhraseBuilder>,
ulfirstelement: u32,
ulcountofelements: u32,
psite: Ref<'_, ISpCFGInterpreterSite>,
) -> Result<()>;
}
Required Methods§
fn InitGrammar( &self, pszgrammarname: &PCWSTR, pvgrammardata: *const *const c_void, ) -> Result<()>
fn Interpret( &self, pphrase: Ref<'_, ISpPhraseBuilder>, ulfirstelement: u32, ulcountofelements: u32, psite: Ref<'_, ISpCFGInterpreterSite>, ) -> 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.