pub trait IPropertyDescriptionSearchInfo_Impl: Sized + IPropertyDescription_Impl {
    // Required methods
    fn GetSearchInfoFlags(&self) -> Result<PROPDESC_SEARCHINFO_FLAGS>;
    fn GetColumnIndexType(&self) -> Result<PROPDESC_COLUMNINDEX_TYPE>;
    fn GetProjectionString(&self) -> Result<PWSTR>;
    fn GetMaxSize(&self) -> Result<u32>;
}

Required Methods§

fn GetSearchInfoFlags(&self) -> Result<PROPDESC_SEARCHINFO_FLAGS>

fn GetColumnIndexType(&self) -> Result<PROPDESC_COLUMNINDEX_TYPE>

fn GetProjectionString(&self) -> Result<PWSTR>

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

Object Safety§

This trait is not object safe.

Implementors§