Trait IFrameworkInputPane_Impl
pub trait IFrameworkInputPane_Impl: IUnknownImpl {
// Required methods
fn Advise(
&self,
pwindow: Ref<'_, IUnknown>,
phandler: Ref<'_, IFrameworkInputPaneHandler>,
) -> Result<u32>;
fn AdviseWithHWND(
&self,
hwnd: HWND,
phandler: Ref<'_, IFrameworkInputPaneHandler>,
) -> Result<u32>;
fn Unadvise(&self, dwcookie: u32) -> Result<()>;
fn Location(&self) -> Result<RECT>;
}
Required Methods§
fn Advise( &self, pwindow: Ref<'_, IUnknown>, phandler: Ref<'_, IFrameworkInputPaneHandler>, ) -> Result<u32>
fn AdviseWithHWND( &self, hwnd: HWND, phandler: Ref<'_, IFrameworkInputPaneHandler>, ) -> Result<u32>
fn Unadvise(&self, dwcookie: u32) -> Result<()>
fn Location(&self) -> Result<RECT>
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.