Trait IDocObjectService_Impl
pub trait IDocObjectService_Impl: IUnknownImpl {
// Required methods
fn FireBeforeNavigate2(
&self,
pdispatch: Ref<'_, IDispatch>,
lpszurl: &PCWSTR,
dwflags: u32,
lpszframename: &PCWSTR,
ppostdata: *const u8,
cbpostdata: u32,
lpszheaders: &PCWSTR,
fplaynavsound: BOOL,
) -> Result<BOOL>;
fn FireDownloadBegin(&self) -> Result<()>;
fn FireDownloadComplete(&self) -> Result<()>;
fn GetPendingUrl(&self) -> Result<BSTR>;
fn GetUrlSearchComponent(&self) -> Result<BSTR>;
fn IsErrorUrl(&self, lpszurl: &PCWSTR) -> Result<BOOL>;
}
Required Methods§
fn FireDownloadBegin(&self) -> Result<()>
fn FireDownloadComplete(&self) -> Result<()>
fn GetPendingUrl(&self) -> Result<BSTR>
fn GetUrlSearchComponent(&self) -> Result<BSTR>
fn IsErrorUrl(&self, lpszurl: &PCWSTR) -> Result<BOOL>
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.