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

Trait ISAXDTDHandler_Impl

pub trait ISAXDTDHandler_Impl: IUnknownImpl {
    // 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<()>

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§