pub trait IUpdateException_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Message(&self) -> Result<BSTR>;
    fn HResult(&self) -> Result<i32>;
    fn Context(&self) -> Result<UpdateExceptionContext>;
}

Required Methods§

fn Message(&self) -> Result<BSTR>

fn HResult(&self) -> Result<i32>

fn Context(&self) -> Result<UpdateExceptionContext>

Object Safety§

This trait is not object safe.

Implementors§