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