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