#[repr(C)]pub struct IInternetProtocolSinkVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IInternetProtocolSink, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IInternetProtocolSink) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IInternetProtocolSink) -> ULONG>,
pub Switch: Option<unsafe extern "C" fn(This: *mut IInternetProtocolSink, pProtocolData: *mut PROTOCOLDATA) -> HRESULT>,
pub ReportProgress: Option<unsafe extern "C" fn(This: *mut IInternetProtocolSink, ulStatusCode: ULONG, szStatusText: LPCWSTR) -> HRESULT>,
pub ReportData: Option<unsafe extern "C" fn(This: *mut IInternetProtocolSink, grfBSCF: DWORD, ulProgress: ULONG, ulProgressMax: ULONG) -> HRESULT>,
pub ReportResult: Option<unsafe extern "C" fn(This: *mut IInternetProtocolSink, hrResult: HRESULT, dwError: DWORD, szResult: LPCWSTR) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IInternetProtocolSink, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IInternetProtocolSink) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IInternetProtocolSink) -> ULONG>
§Switch: Option<unsafe extern "C" fn(This: *mut IInternetProtocolSink, pProtocolData: *mut PROTOCOLDATA) -> HRESULT>
§ReportProgress: Option<unsafe extern "C" fn(This: *mut IInternetProtocolSink, ulStatusCode: ULONG, szStatusText: LPCWSTR) -> HRESULT>
§ReportData: Option<unsafe extern "C" fn(This: *mut IInternetProtocolSink, grfBSCF: DWORD, ulProgress: ULONG, ulProgressMax: ULONG) -> HRESULT>
§ReportResult: Option<unsafe extern "C" fn(This: *mut IInternetProtocolSink, hrResult: HRESULT, dwError: DWORD, szResult: LPCWSTR) -> HRESULT>
Trait Implementations§
Source§impl Clone for IInternetProtocolSinkVtbl
impl Clone for IInternetProtocolSinkVtbl
Source§fn clone(&self) -> IInternetProtocolSinkVtbl
fn clone(&self) -> IInternetProtocolSinkVtbl
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 IInternetProtocolSinkVtbl
impl Debug for IInternetProtocolSinkVtbl
Source§impl Ord for IInternetProtocolSinkVtbl
impl Ord for IInternetProtocolSinkVtbl
Source§fn cmp(&self, other: &IInternetProtocolSinkVtbl) -> Ordering
fn cmp(&self, other: &IInternetProtocolSinkVtbl) -> 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 IInternetProtocolSinkVtbl
impl PartialOrd for IInternetProtocolSinkVtbl
impl Copy for IInternetProtocolSinkVtbl
impl Eq for IInternetProtocolSinkVtbl
impl StructuralPartialEq for IInternetProtocolSinkVtbl
Auto Trait Implementations§
impl Freeze for IInternetProtocolSinkVtbl
impl RefUnwindSafe for IInternetProtocolSinkVtbl
impl Send for IInternetProtocolSinkVtbl
impl Sync for IInternetProtocolSinkVtbl
impl Unpin for IInternetProtocolSinkVtbl
impl UnwindSafe for IInternetProtocolSinkVtbl
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