windows::Win32::System::Ole

Trait IOleInPlaceObject_Impl

pub trait IOleInPlaceObject_Impl: IOleWindow_Impl {
    // Required methods
    fn InPlaceDeactivate(&self) -> Result<()>;
    fn UIDeactivate(&self) -> Result<()>;
    fn SetObjectRects(
        &self,
        lprcposrect: *const RECT,
        lprccliprect: *const RECT,
    ) -> Result<()>;
    fn ReactivateAndUndo(&self) -> Result<()>;
}

Required Methods§

fn InPlaceDeactivate(&self) -> Result<()>

fn UIDeactivate(&self) -> Result<()>

fn SetObjectRects( &self, lprcposrect: *const RECT, lprccliprect: *const RECT, ) -> Result<()>

fn ReactivateAndUndo(&self) -> 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.

Implementors§