#[repr(C)]pub struct IInternetProtocolVtbl {Show 13 fields
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IInternetProtocol, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IInternetProtocol) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IInternetProtocol) -> ULONG>,
pub Start: Option<unsafe extern "C" fn(This: *mut IInternetProtocol, szUrl: LPCWSTR, pOIProtSink: *mut IInternetProtocolSink, pOIBindInfo: *mut IInternetBindInfo, grfPI: DWORD, dwReserved: HANDLE_PTR) -> HRESULT>,
pub Continue: Option<unsafe extern "C" fn(This: *mut IInternetProtocol, pProtocolData: *mut PROTOCOLDATA) -> HRESULT>,
pub Abort: Option<unsafe extern "C" fn(This: *mut IInternetProtocol, hrReason: HRESULT, dwOptions: DWORD) -> HRESULT>,
pub Terminate: Option<unsafe extern "C" fn(This: *mut IInternetProtocol, dwOptions: DWORD) -> HRESULT>,
pub Suspend: Option<unsafe extern "C" fn(This: *mut IInternetProtocol) -> HRESULT>,
pub Resume: Option<unsafe extern "C" fn(This: *mut IInternetProtocol) -> HRESULT>,
pub Read: Option<unsafe extern "C" fn(This: *mut IInternetProtocol, pv: *mut c_void, cb: ULONG, pcbRead: *mut ULONG) -> HRESULT>,
pub Seek: Option<unsafe extern "C" fn(This: *mut IInternetProtocol, dlibMove: LARGE_INTEGER, dwOrigin: DWORD, plibNewPosition: *mut ULARGE_INTEGER) -> HRESULT>,
pub LockRequest: Option<unsafe extern "C" fn(This: *mut IInternetProtocol, dwOptions: DWORD) -> HRESULT>,
pub UnlockRequest: Option<unsafe extern "C" fn(This: *mut IInternetProtocol) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IInternetProtocol, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IInternetProtocol) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IInternetProtocol) -> ULONG>
§Start: Option<unsafe extern "C" fn(This: *mut IInternetProtocol, szUrl: LPCWSTR, pOIProtSink: *mut IInternetProtocolSink, pOIBindInfo: *mut IInternetBindInfo, grfPI: DWORD, dwReserved: HANDLE_PTR) -> HRESULT>
§Continue: Option<unsafe extern "C" fn(This: *mut IInternetProtocol, pProtocolData: *mut PROTOCOLDATA) -> HRESULT>
§Abort: Option<unsafe extern "C" fn(This: *mut IInternetProtocol, hrReason: HRESULT, dwOptions: DWORD) -> HRESULT>
§Terminate: Option<unsafe extern "C" fn(This: *mut IInternetProtocol, dwOptions: DWORD) -> HRESULT>
§Suspend: Option<unsafe extern "C" fn(This: *mut IInternetProtocol) -> HRESULT>
§Resume: Option<unsafe extern "C" fn(This: *mut IInternetProtocol) -> HRESULT>
§Read: Option<unsafe extern "C" fn(This: *mut IInternetProtocol, pv: *mut c_void, cb: ULONG, pcbRead: *mut ULONG) -> HRESULT>
§Seek: Option<unsafe extern "C" fn(This: *mut IInternetProtocol, dlibMove: LARGE_INTEGER, dwOrigin: DWORD, plibNewPosition: *mut ULARGE_INTEGER) -> HRESULT>
§LockRequest: Option<unsafe extern "C" fn(This: *mut IInternetProtocol, dwOptions: DWORD) -> HRESULT>
§UnlockRequest: Option<unsafe extern "C" fn(This: *mut IInternetProtocol) -> HRESULT>
Trait Implementations§
Source§impl Clone for IInternetProtocolVtbl
impl Clone for IInternetProtocolVtbl
Source§fn clone(&self) -> IInternetProtocolVtbl
fn clone(&self) -> IInternetProtocolVtbl
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 IInternetProtocolVtbl
impl Debug for IInternetProtocolVtbl
Source§impl Ord for IInternetProtocolVtbl
impl Ord for IInternetProtocolVtbl
Source§fn cmp(&self, other: &IInternetProtocolVtbl) -> Ordering
fn cmp(&self, other: &IInternetProtocolVtbl) -> 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 IInternetProtocolVtbl
impl PartialEq for IInternetProtocolVtbl
Source§impl PartialOrd for IInternetProtocolVtbl
impl PartialOrd for IInternetProtocolVtbl
impl Copy for IInternetProtocolVtbl
impl Eq for IInternetProtocolVtbl
impl StructuralPartialEq for IInternetProtocolVtbl
Auto Trait Implementations§
impl Freeze for IInternetProtocolVtbl
impl RefUnwindSafe for IInternetProtocolVtbl
impl Send for IInternetProtocolVtbl
impl Sync for IInternetProtocolVtbl
impl Unpin for IInternetProtocolVtbl
impl UnwindSafe for IInternetProtocolVtbl
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