Trait ITargetFrame_Impl
pub trait ITargetFrame_Impl: IUnknownImpl {
Show 14 methods
// Required methods
fn SetFrameName(&self, pszframename: &PCWSTR) -> Result<()>;
fn GetFrameName(&self) -> Result<PWSTR>;
fn GetParentFrame(&self) -> Result<IUnknown>;
fn FindFrame(
&self,
psztargetname: &PCWSTR,
ppunkcontextframe: Ref<'_, IUnknown>,
dwflags: u32,
) -> Result<IUnknown>;
fn SetFrameSrc(&self, pszframesrc: &PCWSTR) -> Result<()>;
fn GetFrameSrc(&self) -> Result<PWSTR>;
fn GetFramesContainer(&self) -> Result<IOleContainer>;
fn SetFrameOptions(&self, dwflags: u32) -> Result<()>;
fn GetFrameOptions(&self) -> Result<u32>;
fn SetFrameMargins(&self, dwwidth: u32, dwheight: u32) -> Result<()>;
fn GetFrameMargins(
&self,
pdwwidth: *mut u32,
pdwheight: *mut u32,
) -> Result<()>;
fn RemoteNavigate(&self, clength: u32, puldata: *const u32) -> Result<()>;
fn OnChildFrameActivate(
&self,
punkchildframe: Ref<'_, IUnknown>,
) -> Result<()>;
fn OnChildFrameDeactivate(
&self,
punkchildframe: Ref<'_, IUnknown>,
) -> Result<()>;
}
Required Methods§
fn SetFrameName(&self, pszframename: &PCWSTR) -> Result<()>
fn GetFrameName(&self) -> Result<PWSTR>
fn GetParentFrame(&self) -> Result<IUnknown>
fn FindFrame( &self, psztargetname: &PCWSTR, ppunkcontextframe: Ref<'_, IUnknown>, dwflags: u32, ) -> Result<IUnknown>
fn SetFrameSrc(&self, pszframesrc: &PCWSTR) -> Result<()>
fn GetFrameSrc(&self) -> Result<PWSTR>
fn GetFramesContainer(&self) -> Result<IOleContainer>
fn SetFrameOptions(&self, dwflags: u32) -> Result<()>
fn GetFrameOptions(&self) -> Result<u32>
fn SetFrameMargins(&self, dwwidth: u32, dwheight: u32) -> Result<()>
fn GetFrameMargins(&self, pdwwidth: *mut u32, pdwheight: *mut u32) -> Result<()>
fn OnChildFrameActivate(&self, punkchildframe: Ref<'_, IUnknown>) -> Result<()>
fn OnChildFrameDeactivate( &self, punkchildframe: Ref<'_, IUnknown>, ) -> 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.