Trait IVBSAXLexicalHandler_Impl
pub trait IVBSAXLexicalHandler_Impl: 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<()>
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.