[][src]Struct winapi::um::objidl::IDataObject

#[repr(C)]
pub struct IDataObject { pub lpVtbl: *const IDataObjectVtbl, }

Fields

lpVtbl: *const IDataObjectVtbl

Methods

impl IDataObject[src]

pub unsafe fn GetData(
    &self,
    pformatetcIn: *const FORMATETC,
    pmedium: *mut STGMEDIUM
) -> HRESULT
[src]

pub unsafe fn GetDataHere(
    &self,
    pformatetc: *const FORMATETC,
    pmedium: *mut STGMEDIUM
) -> HRESULT
[src]

pub unsafe fn QueryGetData(&self, pformatetc: *const FORMATETC) -> HRESULT[src]

pub unsafe fn GetCanonicalFormatEtc(
    &self,
    pformatetcIn: *const FORMATETC,
    pformatetcOut: *mut FORMATETC
) -> HRESULT
[src]

pub unsafe fn SetData(
    &self,
    pformatetc: *const FORMATETC,
    pformatetcOut: *const FORMATETC,
    fRelease: BOOL
) -> HRESULT
[src]

pub unsafe fn EnumFormatEtc(
    &self,
    dwDirection: DWORD,
    ppenumFormatEtc: *mut *mut IEnumFORMATETC
) -> HRESULT
[src]

pub unsafe fn DAdvise(
    &self,
    pformatetc: *const FORMATETC,
    advf: DWORD,
    pAdvSInk: *const IAdviseSink,
    pdwConnection: *mut DWORD
) -> HRESULT
[src]

pub unsafe fn DUnadvise(&self, dwConnection: DWORD) -> HRESULT[src]

pub unsafe fn EnumDAdvise(
    &self,
    ppenumAdvise: *const *const IEnumSTATDATA
) -> HRESULT
[src]

Methods from Deref<Target = IUnknown>

pub unsafe fn QueryInterface(
    &self,
    riid: REFIID,
    ppvObject: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn AddRef(&self) -> ULONG[src]

pub unsafe fn Release(&self) -> ULONG[src]

Trait Implementations

impl Interface for IDataObject[src]

impl Deref for IDataObject[src]

type Target = IUnknown

The resulting type after dereferencing.

Auto Trait Implementations

impl !Send for IDataObject

impl !Sync for IDataObject

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]