Trait IAMVfwCaptureDialogs_Impl
pub trait IAMVfwCaptureDialogs_Impl: IUnknownImpl {
// Required methods
fn HasDialog(&self, idialog: i32) -> Result<()>;
fn ShowDialog(&self, idialog: i32, hwnd: HWND) -> Result<()>;
fn SendDriverMessage(
&self,
idialog: i32,
umsg: i32,
dw1: i32,
dw2: i32,
) -> Result<()>;
}
Required Methods§
fn HasDialog(&self, idialog: i32) -> Result<()>
fn ShowDialog(&self, idialog: i32, hwnd: HWND) -> Result<()>
fn SendDriverMessage( &self, idialog: i32, umsg: i32, dw1: i32, dw2: i32, ) -> 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.