Trait IAutoComplete_Impl
pub trait IAutoComplete_Impl: IUnknownImpl {
// Required methods
fn Init(
&self,
hwndedit: HWND,
punkacl: Ref<'_, IUnknown>,
pwszregkeypath: &PCWSTR,
pwszquickcomplete: &PCWSTR,
) -> Result<()>;
fn Enable(&self, fenable: BOOL) -> Result<()>;
}
Required Methods§
fn Init( &self, hwndedit: HWND, punkacl: Ref<'_, IUnknown>, pwszregkeypath: &PCWSTR, pwszquickcomplete: &PCWSTR, ) -> Result<()>
fn Enable(&self, fenable: BOOL) -> 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.