pub trait ISAXLexicalHandler_Impl: Sized {
// Required methods
fn startDTD(
&self,
pwchname: &PCWSTR,
cchname: i32,
pwchpublicid: &PCWSTR,
cchpublicid: i32,
pwchsystemid: &PCWSTR,
cchsystemid: i32,
) -> Result<()>;
fn endDTD(&self) -> Result<()>;
fn startEntity(&self, pwchname: &PCWSTR, cchname: i32) -> Result<()>;
fn endEntity(&self, pwchname: &PCWSTR, cchname: i32) -> Result<()>;
fn startCDATA(&self) -> Result<()>;
fn endCDATA(&self) -> Result<()>;
fn comment(&self, pwchchars: &PCWSTR, cchchars: i32) -> Result<()>;
}
Required Methods§
fn startDTD( &self, pwchname: &PCWSTR, cchname: i32, pwchpublicid: &PCWSTR, cchpublicid: i32, pwchsystemid: &PCWSTR, cchsystemid: i32, ) -> Result<()>
fn endDTD(&self) -> Result<()>
fn startEntity(&self, pwchname: &PCWSTR, cchname: i32) -> Result<()>
fn endEntity(&self, pwchname: &PCWSTR, cchname: i32) -> Result<()>
fn startCDATA(&self) -> Result<()>
fn endCDATA(&self) -> Result<()>
fn comment(&self, pwchchars: &PCWSTR, cchchars: i32) -> Result<()>
Object Safety§
This trait is not object safe.