windows::Win32::System::Search

Trait IStemmer_Impl

pub trait IStemmer_Impl: IUnknownImpl {
    // Required methods
    fn Init(&self, ulmaxtokensize: u32, pflicense: *mut BOOL) -> Result<()>;
    fn GenerateWordForms(
        &self,
        pwcinbuf: &PCWSTR,
        cwc: u32,
        pstemsink: Ref<'_, IWordFormSink>,
    ) -> Result<()>;
    fn GetLicenseToUse(&self, ppwcslicense: *const *const u16) -> Result<()>;
}

Required Methods§

fn Init(&self, ulmaxtokensize: u32, pflicense: *mut BOOL) -> Result<()>

fn GenerateWordForms( &self, pwcinbuf: &PCWSTR, cwc: u32, pstemsink: Ref<'_, IWordFormSink>, ) -> Result<()>

fn GetLicenseToUse(&self, ppwcslicense: *const *const u16) -> 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.

Implementors§