#[repr(C)]pub struct IInternetProtocolInfoVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IInternetProtocolInfo, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IInternetProtocolInfo) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IInternetProtocolInfo) -> ULONG>,
pub ParseUrl: Option<unsafe extern "C" fn(This: *mut IInternetProtocolInfo, pwzUrl: LPCWSTR, ParseAction: PARSEACTION, dwParseFlags: DWORD, pwzResult: LPWSTR, cchResult: DWORD, pcchResult: *mut DWORD, dwReserved: DWORD) -> HRESULT>,
pub CombineUrl: Option<unsafe extern "C" fn(This: *mut IInternetProtocolInfo, pwzBaseUrl: LPCWSTR, pwzRelativeUrl: LPCWSTR, dwCombineFlags: DWORD, pwzResult: LPWSTR, cchResult: DWORD, pcchResult: *mut DWORD, dwReserved: DWORD) -> HRESULT>,
pub CompareUrl: Option<unsafe extern "C" fn(This: *mut IInternetProtocolInfo, pwzUrl1: LPCWSTR, pwzUrl2: LPCWSTR, dwCompareFlags: DWORD) -> HRESULT>,
pub QueryInfo: Option<unsafe extern "C" fn(This: *mut IInternetProtocolInfo, pwzUrl: LPCWSTR, OueryOption: QUERYOPTION, dwQueryFlags: DWORD, pBuffer: LPVOID, cbBuffer: DWORD, pcbBuf: *mut DWORD, dwReserved: DWORD) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IInternetProtocolInfo, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IInternetProtocolInfo) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IInternetProtocolInfo) -> ULONG>
§ParseUrl: Option<unsafe extern "C" fn(This: *mut IInternetProtocolInfo, pwzUrl: LPCWSTR, ParseAction: PARSEACTION, dwParseFlags: DWORD, pwzResult: LPWSTR, cchResult: DWORD, pcchResult: *mut DWORD, dwReserved: DWORD) -> HRESULT>
§CombineUrl: Option<unsafe extern "C" fn(This: *mut IInternetProtocolInfo, pwzBaseUrl: LPCWSTR, pwzRelativeUrl: LPCWSTR, dwCombineFlags: DWORD, pwzResult: LPWSTR, cchResult: DWORD, pcchResult: *mut DWORD, dwReserved: DWORD) -> HRESULT>
§CompareUrl: Option<unsafe extern "C" fn(This: *mut IInternetProtocolInfo, pwzUrl1: LPCWSTR, pwzUrl2: LPCWSTR, dwCompareFlags: DWORD) -> HRESULT>
§QueryInfo: Option<unsafe extern "C" fn(This: *mut IInternetProtocolInfo, pwzUrl: LPCWSTR, OueryOption: QUERYOPTION, dwQueryFlags: DWORD, pBuffer: LPVOID, cbBuffer: DWORD, pcbBuf: *mut DWORD, dwReserved: DWORD) -> HRESULT>
Trait Implementations§
Source§impl Clone for IInternetProtocolInfoVtbl
impl Clone for IInternetProtocolInfoVtbl
Source§fn clone(&self) -> IInternetProtocolInfoVtbl
fn clone(&self) -> IInternetProtocolInfoVtbl
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 IInternetProtocolInfoVtbl
impl Debug for IInternetProtocolInfoVtbl
Source§impl Ord for IInternetProtocolInfoVtbl
impl Ord for IInternetProtocolInfoVtbl
Source§fn cmp(&self, other: &IInternetProtocolInfoVtbl) -> Ordering
fn cmp(&self, other: &IInternetProtocolInfoVtbl) -> 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 PartialOrd for IInternetProtocolInfoVtbl
impl PartialOrd for IInternetProtocolInfoVtbl
impl Copy for IInternetProtocolInfoVtbl
impl Eq for IInternetProtocolInfoVtbl
impl StructuralPartialEq for IInternetProtocolInfoVtbl
Auto Trait Implementations§
impl Freeze for IInternetProtocolInfoVtbl
impl RefUnwindSafe for IInternetProtocolInfoVtbl
impl Send for IInternetProtocolInfoVtbl
impl Sync for IInternetProtocolInfoVtbl
impl Unpin for IInternetProtocolInfoVtbl
impl UnwindSafe for IInternetProtocolInfoVtbl
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