Trait windows::Win32::Data::Xml::MsXml::IVBSAXLexicalHandler_Impl

pub trait IVBSAXLexicalHandler_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn startDTD(
        &self,
        strname: *mut BSTR,
        strpublicid: *mut BSTR,
        strsystemid: *mut BSTR
    ) -> Result<()>;
    fn endDTD(&self) -> Result<()>;
    fn startEntity(&self, strname: *mut BSTR) -> Result<()>;
    fn endEntity(&self, strname: *mut BSTR) -> Result<()>;
    fn startCDATA(&self) -> Result<()>;
    fn endCDATA(&self) -> Result<()>;
    fn comment(&self, strchars: *mut BSTR) -> Result<()>;
}

Required Methods§

fn startDTD( &self, strname: *mut BSTR, strpublicid: *mut BSTR, strsystemid: *mut BSTR ) -> Result<()>

fn endDTD(&self) -> Result<()>

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

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

fn startCDATA(&self) -> Result<()>

fn endCDATA(&self) -> Result<()>

fn comment(&self, strchars: *mut BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§