windows::Win32::Data::Xml::MsXml

Trait ISAXErrorHandler_Impl

pub trait ISAXErrorHandler_Impl: IUnknownImpl {
    // Required methods
    fn error(
        &self,
        plocator: Ref<'_, ISAXLocator>,
        pwcherrormessage: &PCWSTR,
        hrerrorcode: HRESULT,
    ) -> Result<()>;
    fn fatalError(
        &self,
        plocator: Ref<'_, ISAXLocator>,
        pwcherrormessage: &PCWSTR,
        hrerrorcode: HRESULT,
    ) -> Result<()>;
    fn ignorableWarning(
        &self,
        plocator: Ref<'_, ISAXLocator>,
        pwcherrormessage: &PCWSTR,
        hrerrorcode: HRESULT,
    ) -> Result<()>;
}

Required Methods§

fn error( &self, plocator: Ref<'_, ISAXLocator>, pwcherrormessage: &PCWSTR, hrerrorcode: HRESULT, ) -> Result<()>

fn fatalError( &self, plocator: Ref<'_, ISAXLocator>, pwcherrormessage: &PCWSTR, hrerrorcode: HRESULT, ) -> Result<()>

fn ignorableWarning( &self, plocator: Ref<'_, ISAXLocator>, pwcherrormessage: &PCWSTR, hrerrorcode: 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.

Implementors§