Trait IESEvent_Impl
pub trait IESEvent_Impl: IUnknownImpl {
// Required methods
fn GetEventId(&self) -> Result<u32>;
fn GetEventType(&self) -> Result<GUID>;
fn SetCompletionStatus(&self, dwresult: u32) -> Result<()>;
fn GetData(&self) -> Result<*mut SAFEARRAY>;
fn GetStringData(&self) -> Result<BSTR>;
}
Required Methods§
fn GetEventId(&self) -> Result<u32>
fn GetEventType(&self) -> Result<GUID>
fn SetCompletionStatus(&self, dwresult: u32) -> Result<()>
fn GetData(&self) -> Result<*mut SAFEARRAY>
fn GetStringData(&self) -> Result<BSTR>
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.