Trait windows::Win32::Data::Xml::MsXml::IVBSAXDeclHandler_Impl

pub trait IVBSAXDeclHandler_Impl: Sized + 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<()>

Object Safety§

This trait is not object safe.

Implementors§