Trait IWiaLog_Impl
pub trait IWiaLog_Impl: IUnknownImpl {
// Required methods
fn InitializeLog(&self, hinstance: i32) -> Result<()>;
fn hResult(&self, hresult: HRESULT) -> Result<()>;
fn Log(
&self,
lflags: i32,
lresid: i32,
ldetail: i32,
bstrtext: &BSTR,
) -> Result<()>;
}
Required Methods§
fn InitializeLog(&self, hinstance: i32) -> Result<()>
fn hResult(&self, hresult: HRESULT) -> Result<()>
fn Log( &self, lflags: i32, lresid: i32, ldetail: i32, bstrtext: &BSTR, ) -> 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.