Trait IVBSAXErrorHandler_Impl
pub trait IVBSAXErrorHandler_Impl: IDispatch_Impl {
// Required methods
fn error(
&self,
olocator: Ref<'_, IVBSAXLocator>,
strerrormessage: *mut BSTR,
nerrorcode: i32,
) -> Result<()>;
fn fatalError(
&self,
olocator: Ref<'_, IVBSAXLocator>,
strerrormessage: *mut BSTR,
nerrorcode: i32,
) -> Result<()>;
fn ignorableWarning(
&self,
olocator: Ref<'_, IVBSAXLocator>,
strerrormessage: *mut BSTR,
nerrorcode: i32,
) -> Result<()>;
}
Required Methods§
fn error( &self, olocator: Ref<'_, IVBSAXLocator>, strerrormessage: *mut BSTR, nerrorcode: i32, ) -> Result<()>
fn fatalError( &self, olocator: Ref<'_, IVBSAXLocator>, strerrormessage: *mut BSTR, nerrorcode: i32, ) -> Result<()>
fn ignorableWarning( &self, olocator: Ref<'_, IVBSAXLocator>, strerrormessage: *mut BSTR, nerrorcode: i32, ) -> 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.