Trait IWMPErrorItem_Impl
pub trait IWMPErrorItem_Impl: IDispatch_Impl {
// Required methods
fn errorCode(&self, phr: *mut i32) -> Result<()>;
fn errorDescription(&self, pbstrdescription: *mut BSTR) -> Result<()>;
fn errorContext(&self, pvarcontext: *mut VARIANT) -> Result<()>;
fn remedy(&self, plremedy: *mut i32) -> Result<()>;
fn customUrl(&self, pbstrcustomurl: *mut BSTR) -> Result<()>;
}
Required Methods§
fn errorCode(&self, phr: *mut i32) -> Result<()>
fn errorDescription(&self, pbstrdescription: *mut BSTR) -> Result<()>
fn errorContext(&self, pvarcontext: *mut VARIANT) -> Result<()>
fn remedy(&self, plremedy: *mut i32) -> Result<()>
fn customUrl(&self, pbstrcustomurl: *mut 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.