windows::Win32::UI::Shell

Trait IDragSourceHelper_Impl

pub trait IDragSourceHelper_Impl: IUnknownImpl {
    // Required methods
    fn InitializeFromBitmap(
        &self,
        pshdi: *const SHDRAGIMAGE,
        pdataobject: Ref<'_, IDataObject>,
    ) -> Result<()>;
    fn InitializeFromWindow(
        &self,
        hwnd: HWND,
        ppt: *const POINT,
        pdataobject: Ref<'_, IDataObject>,
    ) -> Result<()>;
}

Required Methods§

fn InitializeFromBitmap( &self, pshdi: *const SHDRAGIMAGE, pdataobject: Ref<'_, IDataObject>, ) -> Result<()>

fn InitializeFromWindow( &self, hwnd: HWND, ppt: *const POINT, pdataobject: Ref<'_, IDataObject>, ) -> 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§