Trait windows::Win32::Data::Xml::MsXml::ISAXDTDHandler_Impl

pub trait ISAXDTDHandler_Impl: Sized {
    // Required methods
    fn notationDecl(
        &self,
        pwchname: &PCWSTR,
        cchname: i32,
        pwchpublicid: &PCWSTR,
        cchpublicid: i32,
        pwchsystemid: &PCWSTR,
        cchsystemid: i32
    ) -> Result<()>;
    fn unparsedEntityDecl(
        &self,
        pwchname: &PCWSTR,
        cchname: i32,
        pwchpublicid: &PCWSTR,
        cchpublicid: i32,
        pwchsystemid: &PCWSTR,
        cchsystemid: i32,
        pwchnotationname: &PCWSTR,
        cchnotationname: i32
    ) -> Result<()>;
}

Required Methods§

fn notationDecl( &self, pwchname: &PCWSTR, cchname: i32, pwchpublicid: &PCWSTR, cchpublicid: i32, pwchsystemid: &PCWSTR, cchsystemid: i32 ) -> Result<()>

fn unparsedEntityDecl( &self, pwchname: &PCWSTR, cchname: i32, pwchpublicid: &PCWSTR, cchpublicid: i32, pwchsystemid: &PCWSTR, cchsystemid: i32, pwchnotationname: &PCWSTR, cchnotationname: i32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§