Struct ICoreWebView2DownloadOperationVTable

Source
#[repr(C)]
pub struct ICoreWebView2DownloadOperationVTable {
Show 20 fields pub iunknown_base: <dyn IUnknown as ComInterface>::VTable, pub AddBytesReceivedChanged: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut *mut ICoreWebView2BytesReceivedChangedEventHandlerVTable, *mut EventRegistrationToken) -> HRESULT, pub RemoveBytesReceivedChanged: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, EventRegistrationToken) -> HRESULT, pub AddEstimatedEndTimeChanged: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut *mut ICoreWebView2EstimatedEndTimeChangedEventHandlerVTable, *mut EventRegistrationToken) -> HRESULT, pub RemoveEstimatedEndTimeChanged: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, EventRegistrationToken) -> HRESULT, pub AddStateChanged: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut *mut ICoreWebView2StateChangedEventHandlerVTable, *mut EventRegistrationToken) -> HRESULT, pub RemoveStateChanged: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, EventRegistrationToken) -> HRESULT, pub GetUri: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut LPWSTR) -> HRESULT, pub GetContentDisposition: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut LPWSTR) -> HRESULT, pub GetMimeType: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut LPWSTR) -> HRESULT, pub GetTotalBytesToReceive: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut i64) -> HRESULT, pub GetBytesReceived: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut i64) -> HRESULT, pub GetEstimatedEndTime: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut LPWSTR) -> HRESULT, pub GetResultFilePath: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut LPWSTR) -> HRESULT, pub GetState: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut DownloadState) -> HRESULT, pub GetInterruptReason: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut DownloadInterruptReason) -> HRESULT, pub Cancel: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr) -> HRESULT, pub Pause: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr) -> HRESULT, pub Resume: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr) -> HRESULT, pub GetCanResume: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut BOOL) -> HRESULT,
}

Fields§

§iunknown_base: <dyn IUnknown as ComInterface>::VTable§AddBytesReceivedChanged: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut *mut ICoreWebView2BytesReceivedChangedEventHandlerVTable, *mut EventRegistrationToken) -> HRESULT§RemoveBytesReceivedChanged: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, EventRegistrationToken) -> HRESULT§AddEstimatedEndTimeChanged: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut *mut ICoreWebView2EstimatedEndTimeChangedEventHandlerVTable, *mut EventRegistrationToken) -> HRESULT§RemoveEstimatedEndTimeChanged: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, EventRegistrationToken) -> HRESULT§AddStateChanged: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut *mut ICoreWebView2StateChangedEventHandlerVTable, *mut EventRegistrationToken) -> HRESULT§RemoveStateChanged: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, EventRegistrationToken) -> HRESULT§GetUri: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut LPWSTR) -> HRESULT§GetContentDisposition: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut LPWSTR) -> HRESULT§GetMimeType: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut LPWSTR) -> HRESULT§GetTotalBytesToReceive: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut i64) -> HRESULT§GetBytesReceived: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut i64) -> HRESULT§GetEstimatedEndTime: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut LPWSTR) -> HRESULT§GetResultFilePath: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut LPWSTR) -> HRESULT§GetState: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut DownloadState) -> HRESULT§GetInterruptReason: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut DownloadInterruptReason) -> HRESULT§Cancel: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr) -> HRESULT§Pause: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr) -> HRESULT§Resume: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr) -> HRESULT§GetCanResume: unsafe extern "stdcall" fn(*mut ICoreWebView2DownloadOperationVPtr, *mut BOOL) -> HRESULT

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.