windows::Win32::UI::Shell

Trait IDockingWindowSite_Impl

pub trait IDockingWindowSite_Impl: IOleWindow_Impl {
    // Required methods
    fn GetBorderDW(&self, punkobj: Ref<'_, IUnknown>) -> Result<RECT>;
    fn RequestBorderSpaceDW(
        &self,
        punkobj: Ref<'_, IUnknown>,
        pbw: *const RECT,
    ) -> Result<()>;
    fn SetBorderSpaceDW(
        &self,
        punkobj: Ref<'_, IUnknown>,
        pbw: *const RECT,
    ) -> Result<()>;
}

Required Methods§

fn GetBorderDW(&self, punkobj: Ref<'_, IUnknown>) -> Result<RECT>

fn RequestBorderSpaceDW( &self, punkobj: Ref<'_, IUnknown>, pbw: *const RECT, ) -> Result<()>

fn SetBorderSpaceDW( &self, punkobj: Ref<'_, IUnknown>, pbw: *const RECT, ) -> 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§