Trait IMFMediaError_Impl
pub trait IMFMediaError_Impl: IUnknownImpl {
// Required methods
fn GetErrorCode(&self) -> u16;
fn GetExtendedErrorCode(&self) -> Result<()>;
fn SetErrorCode(&self, error: MF_MEDIA_ENGINE_ERR) -> Result<()>;
fn SetExtendedErrorCode(&self, error: HRESULT) -> Result<()>;
}
Required Methods§
fn GetErrorCode(&self) -> u16
fn GetExtendedErrorCode(&self) -> Result<()>
fn SetErrorCode(&self, error: MF_MEDIA_ENGINE_ERR) -> Result<()>
fn SetExtendedErrorCode(&self, error: HRESULT) -> 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.