Struct makepad_platform::os::windows::dataobject::IDataObject
source · #[repr(transparent)]pub struct IDataObject(/* private fields */);Implementations§
source§impl IDataObject
impl IDataObject
pub unsafe fn GetData( &self, pformatetcin: *const FORMATETC ) -> Result<STGMEDIUM>
pub unsafe fn GetDataHere( &self, pformatetc: *const FORMATETC, pmedium: *mut STGMEDIUM ) -> Result<()>
pub unsafe fn QueryGetData(&self, pformatetc: *const FORMATETC) -> HRESULT
pub unsafe fn GetCanonicalFormatEtc( &self, pformatectin: *const FORMATETC, pformatetcout: *mut FORMATETC ) -> HRESULT
pub unsafe fn SetData<P0>( &self, pformatetc: *const FORMATETC, pmedium: *const STGMEDIUM, frelease: P0 ) -> Result<()>where P0: IntoParam<BOOL>,
pub unsafe fn EnumFormatEtc(&self, dwdirection: u32) -> Result<IEnumFORMATETC>
pub unsafe fn DAdvise<P0>( &self, pformatetc: *const FORMATETC, advf: u32, padvsink: P0 ) -> Result<u32>where P0: IntoParam<IAdviseSink>,
pub unsafe fn DUnadvise(&self, dwconnection: u32) -> Result<()>
pub unsafe fn EnumDAdvise(&self) -> Result<IEnumSTATDATA>
Trait Implementations§
source§impl AsImpl<DragItem> for IDataObject
impl AsImpl<DragItem> for IDataObject
source§impl Clone for IDataObject
impl Clone for IDataObject
source§impl ComInterface for IDataObject
impl ComInterface for IDataObject
source§impl Debug for IDataObject
impl Debug for IDataObject
source§impl From<DragItem> for IDataObject
impl From<DragItem> for IDataObject
source§impl Interface for IDataObject
impl Interface for IDataObject
type Vtable = IDataObject_Vtbl
§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
source§impl PartialEq<IDataObject> for IDataObject
impl PartialEq<IDataObject> for IDataObject
impl Eq for IDataObject
Auto Trait Implementations§
impl RefUnwindSafe for IDataObject
impl !Send for IDataObject
impl !Sync for IDataObject
impl Unpin for IDataObject
impl UnwindSafe for IDataObject
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more