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

Trait IVBSAXDeclHandler_Impl

pub trait IVBSAXDeclHandler_Impl: IDispatch_Impl {
    // Required methods
    fn elementDecl(&self, strname: *mut BSTR, strmodel: *mut BSTR) -> Result<()>;
    fn attributeDecl(
        &self,
        strelementname: *mut BSTR,
        strattributename: *mut BSTR,
        strtype: *mut BSTR,
        strvaluedefault: *mut BSTR,
        strvalue: *mut BSTR,
    ) -> Result<()>;
    fn internalEntityDecl(
        &self,
        strname: *mut BSTR,
        strvalue: *mut BSTR,
    ) -> Result<()>;
    fn externalEntityDecl(
        &self,
        strname: *mut BSTR,
        strpublicid: *mut BSTR,
        strsystemid: *mut BSTR,
    ) -> Result<()>;
}

Required Methods§

fn elementDecl(&self, strname: *mut BSTR, strmodel: *mut BSTR) -> Result<()>

fn attributeDecl( &self, strelementname: *mut BSTR, strattributename: *mut BSTR, strtype: *mut BSTR, strvaluedefault: *mut BSTR, strvalue: *mut BSTR, ) -> Result<()>

fn internalEntityDecl( &self, strname: *mut BSTR, strvalue: *mut BSTR, ) -> Result<()>

fn externalEntityDecl( &self, strname: *mut BSTR, strpublicid: *mut BSTR, strsystemid: *mut BSTR, ) -> 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§