Trait IVBSAXDTDHandler_Impl
pub trait IVBSAXDTDHandler_Impl: IDispatch_Impl {
// Required methods
fn notationDecl(
&self,
strname: *mut BSTR,
strpublicid: *mut BSTR,
strsystemid: *mut BSTR,
) -> Result<()>;
fn unparsedEntityDecl(
&self,
strname: *mut BSTR,
strpublicid: *mut BSTR,
strsystemid: *mut BSTR,
strnotationname: *mut BSTR,
) -> Result<()>;
}
Required Methods§
fn notationDecl( &self, strname: *mut BSTR, strpublicid: *mut BSTR, strsystemid: *mut BSTR, ) -> Result<()>
fn unparsedEntityDecl( &self, strname: *mut BSTR, strpublicid: *mut BSTR, strsystemid: *mut BSTR, strnotationname: *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.