#[repr(C)]pub struct IDropSourceNotifyVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IDropSourceNotify, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IDropSourceNotify) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IDropSourceNotify) -> ULONG>,
pub DragEnterTarget: Option<unsafe extern "C" fn(This: *mut IDropSourceNotify, hwndTarget: HWND) -> HRESULT>,
pub DragLeaveTarget: Option<unsafe extern "C" fn(This: *mut IDropSourceNotify) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IDropSourceNotify, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IDropSourceNotify) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IDropSourceNotify) -> ULONG>
§DragEnterTarget: Option<unsafe extern "C" fn(This: *mut IDropSourceNotify, hwndTarget: HWND) -> HRESULT>
§DragLeaveTarget: Option<unsafe extern "C" fn(This: *mut IDropSourceNotify) -> HRESULT>
Trait Implementations§
Source§impl Clone for IDropSourceNotifyVtbl
impl Clone for IDropSourceNotifyVtbl
Source§fn clone(&self) -> IDropSourceNotifyVtbl
fn clone(&self) -> IDropSourceNotifyVtbl
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IDropSourceNotifyVtbl
impl Debug for IDropSourceNotifyVtbl
Source§impl Ord for IDropSourceNotifyVtbl
impl Ord for IDropSourceNotifyVtbl
Source§fn cmp(&self, other: &IDropSourceNotifyVtbl) -> Ordering
fn cmp(&self, other: &IDropSourceNotifyVtbl) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IDropSourceNotifyVtbl
impl PartialEq for IDropSourceNotifyVtbl
Source§impl PartialOrd for IDropSourceNotifyVtbl
impl PartialOrd for IDropSourceNotifyVtbl
impl Copy for IDropSourceNotifyVtbl
impl Eq for IDropSourceNotifyVtbl
impl StructuralPartialEq for IDropSourceNotifyVtbl
Auto Trait Implementations§
impl Freeze for IDropSourceNotifyVtbl
impl RefUnwindSafe for IDropSourceNotifyVtbl
impl Send for IDropSourceNotifyVtbl
impl Sync for IDropSourceNotifyVtbl
impl Unpin for IDropSourceNotifyVtbl
impl UnwindSafe for IDropSourceNotifyVtbl
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