pub trait IAutoComplete_Impl: Sized {
    // Required methods
    fn Init(
        &self,
        hwndedit: HWND,
        punkacl: Option<&IUnknown>,
        pwszregkeypath: &PCWSTR,
        pwszquickcomplete: &PCWSTR
    ) -> Result<()>;
    fn Enable(&self, fenable: BOOL) -> Result<()>;
}

Required Methods§

fn Init( &self, hwndedit: HWND, punkacl: Option<&IUnknown>, pwszregkeypath: &PCWSTR, pwszquickcomplete: &PCWSTR ) -> Result<()>

fn Enable(&self, fenable: BOOL) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§