Trait IOleInPlaceUIWindow_Impl
pub trait IOleInPlaceUIWindow_Impl: IOleWindow_Impl {
// Required methods
fn GetBorder(&self) -> Result<RECT>;
fn RequestBorderSpace(&self, pborderwidths: *const RECT) -> Result<()>;
fn SetBorderSpace(&self, pborderwidths: *const RECT) -> Result<()>;
fn SetActiveObject(
&self,
pactiveobject: Ref<'_, IOleInPlaceActiveObject>,
pszobjname: &PCWSTR,
) -> Result<()>;
}
Required Methods§
fn GetBorder(&self) -> Result<RECT>
fn RequestBorderSpace(&self, pborderwidths: *const RECT) -> Result<()>
fn SetBorderSpace(&self, pborderwidths: *const RECT) -> Result<()>
fn SetActiveObject( &self, pactiveobject: Ref<'_, IOleInPlaceActiveObject>, pszobjname: &PCWSTR, ) -> 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.