pub trait ISearchContext_Impl: Sized {
    // Required methods
    fn GetSearchUrl(&self) -> Result<BSTR>;
    fn GetSearchText(&self) -> Result<BSTR>;
    fn GetSearchStyle(&self) -> Result<u32>;
}

Required Methods§

fn GetSearchUrl(&self) -> Result<BSTR>

fn GetSearchText(&self) -> Result<BSTR>

fn GetSearchStyle(&self) -> Result<u32>

Object Safety§

This trait is not object safe.

Implementors§