Trait IAMVfwCompressDialogs_Impl
pub trait IAMVfwCompressDialogs_Impl: IUnknownImpl {
// Required methods
fn ShowDialog(&self, idialog: i32, hwnd: HWND) -> Result<()>;
fn GetState(&self, pstate: *mut c_void, pcbstate: *mut i32) -> Result<()>;
fn SetState(&self, pstate: *const c_void, cbstate: i32) -> Result<()>;
fn SendDriverMessage(&self, umsg: i32, dw1: i32, dw2: i32) -> Result<()>;
}
Required Methods§
fn ShowDialog(&self, idialog: i32, hwnd: HWND) -> Result<()>
fn GetState(&self, pstate: *mut c_void, pcbstate: *mut i32) -> Result<()>
fn SetState(&self, pstate: *const c_void, cbstate: i32) -> Result<()>
fn SendDriverMessage(&self, 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.