pub trait ITfFnSearchCandidateProvider_Impl: Sized + ITfFunction_Impl {
    // Required methods
    fn GetSearchCandidates(
        &self,
        bstrquery: &BSTR,
        bstrapplicationid: &BSTR,
    ) -> Result<ITfCandidateList>;
    fn SetResult(
        &self,
        bstrquery: &BSTR,
        bstrapplicationid: &BSTR,
        bstrresult: &BSTR,
    ) -> Result<()>;
}

Required Methods§

fn GetSearchCandidates( &self, bstrquery: &BSTR, bstrapplicationid: &BSTR, ) -> Result<ITfCandidateList>

fn SetResult( &self, bstrquery: &BSTR, bstrapplicationid: &BSTR, bstrresult: &BSTR, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§