#[repr(C)]pub struct IInternetVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IInternet, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IInternet) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IInternet) -> ULONG>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IInternet, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IInternet) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IInternet) -> ULONG>
Trait Implementations§
Source§impl Clone for IInternetVtbl
impl Clone for IInternetVtbl
Source§fn clone(&self) -> IInternetVtbl
fn clone(&self) -> IInternetVtbl
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 IInternetVtbl
impl Debug for IInternetVtbl
Source§impl Ord for IInternetVtbl
impl Ord for IInternetVtbl
Source§fn cmp(&self, other: &IInternetVtbl) -> Ordering
fn cmp(&self, other: &IInternetVtbl) -> 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 IInternetVtbl
impl PartialEq for IInternetVtbl
Source§impl PartialOrd for IInternetVtbl
impl PartialOrd for IInternetVtbl
impl Copy for IInternetVtbl
impl Eq for IInternetVtbl
impl StructuralPartialEq for IInternetVtbl
Auto Trait Implementations§
impl Freeze for IInternetVtbl
impl RefUnwindSafe for IInternetVtbl
impl Send for IInternetVtbl
impl Sync for IInternetVtbl
impl Unpin for IInternetVtbl
impl UnwindSafe for IInternetVtbl
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