Trait windows::Win32::Data::Xml::MsXml::IVBSAXErrorHandler_Impl

pub trait IVBSAXErrorHandler_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn error(
        &self,
        olocator: Option<&IVBSAXLocator>,
        strerrormessage: *mut BSTR,
        nerrorcode: i32
    ) -> Result<()>;
    fn fatalError(
        &self,
        olocator: Option<&IVBSAXLocator>,
        strerrormessage: *mut BSTR,
        nerrorcode: i32
    ) -> Result<()>;
    fn ignorableWarning(
        &self,
        olocator: Option<&IVBSAXLocator>,
        strerrormessage: *mut BSTR,
        nerrorcode: i32
    ) -> Result<()>;
}

Required Methods§

fn error( &self, olocator: Option<&IVBSAXLocator>, strerrormessage: *mut BSTR, nerrorcode: i32 ) -> Result<()>

fn fatalError( &self, olocator: Option<&IVBSAXLocator>, strerrormessage: *mut BSTR, nerrorcode: i32 ) -> Result<()>

fn ignorableWarning( &self, olocator: Option<&IVBSAXLocator>, strerrormessage: *mut BSTR, nerrorcode: i32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§