#[repr(C)]pub struct IInternetProtocolSinkVtbl {
pub QueryInterface: Option<unsafe extern "stdcall" fn(This: *mut IInternetProtocolSink, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "stdcall" fn(This: *mut IInternetProtocolSink) -> ULONG>,
pub Release: Option<unsafe extern "stdcall" fn(This: *mut IInternetProtocolSink) -> ULONG>,
pub Switch: Option<unsafe extern "stdcall" fn(This: *mut IInternetProtocolSink, pProtocolData: *mut PROTOCOLDATA) -> HRESULT>,
pub ReportProgress: Option<unsafe extern "stdcall" fn(This: *mut IInternetProtocolSink, ulStatusCode: ULONG, szStatusText: LPCWSTR) -> HRESULT>,
pub ReportData: Option<unsafe extern "stdcall" fn(This: *mut IInternetProtocolSink, grfBSCF: DWORD, ulProgress: ULONG, ulProgressMax: ULONG) -> HRESULT>,
pub ReportResult: Option<unsafe extern "stdcall" fn(This: *mut IInternetProtocolSink, hrResult: HRESULT, dwError: DWORD, szResult: LPCWSTR) -> HRESULT>,
}Fields§
§QueryInterface: Option<unsafe extern "stdcall" fn(This: *mut IInternetProtocolSink, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>§AddRef: Option<unsafe extern "stdcall" fn(This: *mut IInternetProtocolSink) -> ULONG>§Release: Option<unsafe extern "stdcall" fn(This: *mut IInternetProtocolSink) -> ULONG>§Switch: Option<unsafe extern "stdcall" fn(This: *mut IInternetProtocolSink, pProtocolData: *mut PROTOCOLDATA) -> HRESULT>§ReportProgress: Option<unsafe extern "stdcall" fn(This: *mut IInternetProtocolSink, ulStatusCode: ULONG, szStatusText: LPCWSTR) -> HRESULT>§ReportData: Option<unsafe extern "stdcall" fn(This: *mut IInternetProtocolSink, grfBSCF: DWORD, ulProgress: ULONG, ulProgressMax: ULONG) -> HRESULT>§ReportResult: Option<unsafe extern "stdcall" 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 duplicate 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 moreimpl Copy 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