Struct webview2_com_sys::Microsoft::Web::WebView2::Win32::ICoreWebView2
source · pub struct ICoreWebView2(/* private fields */);
Implementations§
source§impl ICoreWebView2
impl ICoreWebView2
pub unsafe fn Settings(&self) -> Result<ICoreWebView2Settings>
pub unsafe fn Source(&self, uri: *mut PWSTR) -> Result<()>
pub unsafe fn add_ContentLoading<P0>(
&self,
eventhandler: P0,
token: *mut EventRegistrationToken
) -> Result<()>where
P0: IntoParam<ICoreWebView2ContentLoadingEventHandler>,
pub unsafe fn remove_ContentLoading( &self, token: EventRegistrationToken ) -> Result<()>
pub unsafe fn add_SourceChanged<P0>(
&self,
eventhandler: P0,
token: *mut EventRegistrationToken
) -> Result<()>where
P0: IntoParam<ICoreWebView2SourceChangedEventHandler>,
pub unsafe fn remove_SourceChanged( &self, token: EventRegistrationToken ) -> Result<()>
pub unsafe fn add_HistoryChanged<P0>(
&self,
eventhandler: P0,
token: *mut EventRegistrationToken
) -> Result<()>where
P0: IntoParam<ICoreWebView2HistoryChangedEventHandler>,
pub unsafe fn remove_HistoryChanged( &self, token: EventRegistrationToken ) -> Result<()>
pub unsafe fn add_ScriptDialogOpening<P0>(
&self,
eventhandler: P0,
token: *mut EventRegistrationToken
) -> Result<()>where
P0: IntoParam<ICoreWebView2ScriptDialogOpeningEventHandler>,
pub unsafe fn remove_ScriptDialogOpening( &self, token: EventRegistrationToken ) -> Result<()>
pub unsafe fn add_PermissionRequested<P0>(
&self,
eventhandler: P0,
token: *mut EventRegistrationToken
) -> Result<()>where
P0: IntoParam<ICoreWebView2PermissionRequestedEventHandler>,
pub unsafe fn remove_PermissionRequested( &self, token: EventRegistrationToken ) -> Result<()>
pub unsafe fn add_ProcessFailed<P0>(
&self,
eventhandler: P0,
token: *mut EventRegistrationToken
) -> Result<()>where
P0: IntoParam<ICoreWebView2ProcessFailedEventHandler>,
pub unsafe fn remove_ProcessFailed( &self, token: EventRegistrationToken ) -> Result<()>
pub unsafe fn AddScriptToExecuteOnDocumentCreated<P0, P1>(
&self,
javascript: P0,
handler: P1
) -> Result<()>where
P0: IntoParam<PCWSTR>,
P1: IntoParam<ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandler>,
pub unsafe fn RemoveScriptToExecuteOnDocumentCreated<P0>(
&self,
id: P0
) -> Result<()>where
P0: IntoParam<PCWSTR>,
pub unsafe fn ExecuteScript<P0, P1>(
&self,
javascript: P0,
handler: P1
) -> Result<()>where
P0: IntoParam<PCWSTR>,
P1: IntoParam<ICoreWebView2ExecuteScriptCompletedHandler>,
pub unsafe fn CapturePreview<P0, P1>(
&self,
imageformat: COREWEBVIEW2_CAPTURE_PREVIEW_IMAGE_FORMAT,
imagestream: P0,
handler: P1
) -> Result<()>where
P0: IntoParam<IStream>,
P1: IntoParam<ICoreWebView2CapturePreviewCompletedHandler>,
pub unsafe fn Reload(&self) -> Result<()>
pub unsafe fn PostWebMessageAsJson<P0>(
&self,
webmessageasjson: P0
) -> Result<()>where
P0: IntoParam<PCWSTR>,
pub unsafe fn PostWebMessageAsString<P0>(
&self,
webmessageasstring: P0
) -> Result<()>where
P0: IntoParam<PCWSTR>,
pub unsafe fn add_WebMessageReceived<P0>(
&self,
handler: P0,
token: *mut EventRegistrationToken
) -> Result<()>where
P0: IntoParam<ICoreWebView2WebMessageReceivedEventHandler>,
pub unsafe fn remove_WebMessageReceived( &self, token: EventRegistrationToken ) -> Result<()>
pub unsafe fn CallDevToolsProtocolMethod<P0, P1, P2>(
&self,
methodname: P0,
parametersasjson: P1,
handler: P2
) -> Result<()>where
P0: IntoParam<PCWSTR>,
P1: IntoParam<PCWSTR>,
P2: IntoParam<ICoreWebView2CallDevToolsProtocolMethodCompletedHandler>,
pub unsafe fn BrowserProcessId(&self, value: *mut u32) -> Result<()>
pub unsafe fn CanGoBack(&self, cangoback: *mut BOOL) -> Result<()>
pub unsafe fn CanGoForward(&self, cangoforward: *mut BOOL) -> Result<()>
pub unsafe fn GoBack(&self) -> Result<()>
pub unsafe fn GoForward(&self) -> Result<()>
pub unsafe fn GetDevToolsProtocolEventReceiver<P0>(
&self,
eventname: P0
) -> Result<ICoreWebView2DevToolsProtocolEventReceiver>where
P0: IntoParam<PCWSTR>,
pub unsafe fn Stop(&self) -> Result<()>
pub unsafe fn add_NewWindowRequested<P0>(
&self,
eventhandler: P0,
token: *mut EventRegistrationToken
) -> Result<()>where
P0: IntoParam<ICoreWebView2NewWindowRequestedEventHandler>,
pub unsafe fn remove_NewWindowRequested( &self, token: EventRegistrationToken ) -> Result<()>
pub unsafe fn add_DocumentTitleChanged<P0>(
&self,
eventhandler: P0,
token: *mut EventRegistrationToken
) -> Result<()>where
P0: IntoParam<ICoreWebView2DocumentTitleChangedEventHandler>,
pub unsafe fn remove_DocumentTitleChanged( &self, token: EventRegistrationToken ) -> Result<()>
pub unsafe fn DocumentTitle(&self, title: *mut PWSTR) -> Result<()>
pub unsafe fn AddHostObjectToScript<P0>(
&self,
name: P0,
object: *mut VARIANT
) -> Result<()>where
P0: IntoParam<PCWSTR>,
pub unsafe fn RemoveHostObjectFromScript<P0>(&self, name: P0) -> Result<()>where
P0: IntoParam<PCWSTR>,
pub unsafe fn OpenDevToolsWindow(&self) -> Result<()>
pub unsafe fn add_ContainsFullScreenElementChanged<P0>(
&self,
eventhandler: P0,
token: *mut EventRegistrationToken
) -> Result<()>where
P0: IntoParam<ICoreWebView2ContainsFullScreenElementChangedEventHandler>,
pub unsafe fn remove_ContainsFullScreenElementChanged( &self, token: EventRegistrationToken ) -> Result<()>
pub unsafe fn ContainsFullScreenElement( &self, containsfullscreenelement: *mut BOOL ) -> Result<()>
pub unsafe fn add_WebResourceRequested<P0>(
&self,
eventhandler: P0,
token: *mut EventRegistrationToken
) -> Result<()>where
P0: IntoParam<ICoreWebView2WebResourceRequestedEventHandler>,
pub unsafe fn remove_WebResourceRequested( &self, token: EventRegistrationToken ) -> Result<()>
pub unsafe fn AddWebResourceRequestedFilter<P0>(
&self,
uri: P0,
resourcecontext: COREWEBVIEW2_WEB_RESOURCE_CONTEXT
) -> Result<()>where
P0: IntoParam<PCWSTR>,
pub unsafe fn RemoveWebResourceRequestedFilter<P0>(
&self,
uri: P0,
resourcecontext: COREWEBVIEW2_WEB_RESOURCE_CONTEXT
) -> Result<()>where
P0: IntoParam<PCWSTR>,
pub unsafe fn add_WindowCloseRequested<P0>(
&self,
eventhandler: P0,
token: *mut EventRegistrationToken
) -> Result<()>where
P0: IntoParam<ICoreWebView2WindowCloseRequestedEventHandler>,
pub unsafe fn remove_WindowCloseRequested( &self, token: EventRegistrationToken ) -> Result<()>
Trait Implementations§
source§impl Clone for ICoreWebView2
impl Clone for ICoreWebView2
source§fn clone(&self) -> ICoreWebView2
fn clone(&self) -> ICoreWebView2
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 ICoreWebView2
impl Debug for ICoreWebView2
source§impl From<&ICoreWebView2> for &IUnknown
impl From<&ICoreWebView2> for &IUnknown
source§fn from(value: &ICoreWebView2) -> Self
fn from(value: &ICoreWebView2) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_10> for &ICoreWebView2
impl From<&ICoreWebView2_10> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_10) -> Self
fn from(value: &ICoreWebView2_10) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_11> for &ICoreWebView2
impl From<&ICoreWebView2_11> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_11) -> Self
fn from(value: &ICoreWebView2_11) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_12> for &ICoreWebView2
impl From<&ICoreWebView2_12> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_12) -> Self
fn from(value: &ICoreWebView2_12) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_13> for &ICoreWebView2
impl From<&ICoreWebView2_13> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_13) -> Self
fn from(value: &ICoreWebView2_13) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_14> for &ICoreWebView2
impl From<&ICoreWebView2_14> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_14) -> Self
fn from(value: &ICoreWebView2_14) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_15> for &ICoreWebView2
impl From<&ICoreWebView2_15> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_15) -> Self
fn from(value: &ICoreWebView2_15) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_16> for &ICoreWebView2
impl From<&ICoreWebView2_16> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_16) -> Self
fn from(value: &ICoreWebView2_16) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_17> for &ICoreWebView2
impl From<&ICoreWebView2_17> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_17) -> Self
fn from(value: &ICoreWebView2_17) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_18> for &ICoreWebView2
impl From<&ICoreWebView2_18> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_18) -> Self
fn from(value: &ICoreWebView2_18) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_19> for &ICoreWebView2
impl From<&ICoreWebView2_19> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_19) -> Self
fn from(value: &ICoreWebView2_19) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_2> for &ICoreWebView2
impl From<&ICoreWebView2_2> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_2) -> Self
fn from(value: &ICoreWebView2_2) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_20> for &ICoreWebView2
impl From<&ICoreWebView2_20> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_20) -> Self
fn from(value: &ICoreWebView2_20) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_21> for &ICoreWebView2
impl From<&ICoreWebView2_21> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_21) -> Self
fn from(value: &ICoreWebView2_21) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_22> for &ICoreWebView2
impl From<&ICoreWebView2_22> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_22) -> Self
fn from(value: &ICoreWebView2_22) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_3> for &ICoreWebView2
impl From<&ICoreWebView2_3> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_3) -> Self
fn from(value: &ICoreWebView2_3) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_4> for &ICoreWebView2
impl From<&ICoreWebView2_4> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_4) -> Self
fn from(value: &ICoreWebView2_4) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_5> for &ICoreWebView2
impl From<&ICoreWebView2_5> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_5) -> Self
fn from(value: &ICoreWebView2_5) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_6> for &ICoreWebView2
impl From<&ICoreWebView2_6> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_6) -> Self
fn from(value: &ICoreWebView2_6) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_7> for &ICoreWebView2
impl From<&ICoreWebView2_7> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_7) -> Self
fn from(value: &ICoreWebView2_7) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_8> for &ICoreWebView2
impl From<&ICoreWebView2_8> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_8) -> Self
fn from(value: &ICoreWebView2_8) -> Self
Converts to this type from the input type.
source§impl From<&ICoreWebView2_9> for &ICoreWebView2
impl From<&ICoreWebView2_9> for &ICoreWebView2
source§fn from(value: &ICoreWebView2_9) -> Self
fn from(value: &ICoreWebView2_9) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2> for IUnknown
impl From<ICoreWebView2> for IUnknown
source§fn from(value: ICoreWebView2) -> Self
fn from(value: ICoreWebView2) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_10> for ICoreWebView2
impl From<ICoreWebView2_10> for ICoreWebView2
source§fn from(value: ICoreWebView2_10) -> Self
fn from(value: ICoreWebView2_10) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_11> for ICoreWebView2
impl From<ICoreWebView2_11> for ICoreWebView2
source§fn from(value: ICoreWebView2_11) -> Self
fn from(value: ICoreWebView2_11) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_12> for ICoreWebView2
impl From<ICoreWebView2_12> for ICoreWebView2
source§fn from(value: ICoreWebView2_12) -> Self
fn from(value: ICoreWebView2_12) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_13> for ICoreWebView2
impl From<ICoreWebView2_13> for ICoreWebView2
source§fn from(value: ICoreWebView2_13) -> Self
fn from(value: ICoreWebView2_13) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_14> for ICoreWebView2
impl From<ICoreWebView2_14> for ICoreWebView2
source§fn from(value: ICoreWebView2_14) -> Self
fn from(value: ICoreWebView2_14) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_15> for ICoreWebView2
impl From<ICoreWebView2_15> for ICoreWebView2
source§fn from(value: ICoreWebView2_15) -> Self
fn from(value: ICoreWebView2_15) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_16> for ICoreWebView2
impl From<ICoreWebView2_16> for ICoreWebView2
source§fn from(value: ICoreWebView2_16) -> Self
fn from(value: ICoreWebView2_16) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_17> for ICoreWebView2
impl From<ICoreWebView2_17> for ICoreWebView2
source§fn from(value: ICoreWebView2_17) -> Self
fn from(value: ICoreWebView2_17) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_18> for ICoreWebView2
impl From<ICoreWebView2_18> for ICoreWebView2
source§fn from(value: ICoreWebView2_18) -> Self
fn from(value: ICoreWebView2_18) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_19> for ICoreWebView2
impl From<ICoreWebView2_19> for ICoreWebView2
source§fn from(value: ICoreWebView2_19) -> Self
fn from(value: ICoreWebView2_19) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_2> for ICoreWebView2
impl From<ICoreWebView2_2> for ICoreWebView2
source§fn from(value: ICoreWebView2_2) -> Self
fn from(value: ICoreWebView2_2) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_20> for ICoreWebView2
impl From<ICoreWebView2_20> for ICoreWebView2
source§fn from(value: ICoreWebView2_20) -> Self
fn from(value: ICoreWebView2_20) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_21> for ICoreWebView2
impl From<ICoreWebView2_21> for ICoreWebView2
source§fn from(value: ICoreWebView2_21) -> Self
fn from(value: ICoreWebView2_21) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_22> for ICoreWebView2
impl From<ICoreWebView2_22> for ICoreWebView2
source§fn from(value: ICoreWebView2_22) -> Self
fn from(value: ICoreWebView2_22) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_3> for ICoreWebView2
impl From<ICoreWebView2_3> for ICoreWebView2
source§fn from(value: ICoreWebView2_3) -> Self
fn from(value: ICoreWebView2_3) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_4> for ICoreWebView2
impl From<ICoreWebView2_4> for ICoreWebView2
source§fn from(value: ICoreWebView2_4) -> Self
fn from(value: ICoreWebView2_4) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_5> for ICoreWebView2
impl From<ICoreWebView2_5> for ICoreWebView2
source§fn from(value: ICoreWebView2_5) -> Self
fn from(value: ICoreWebView2_5) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_6> for ICoreWebView2
impl From<ICoreWebView2_6> for ICoreWebView2
source§fn from(value: ICoreWebView2_6) -> Self
fn from(value: ICoreWebView2_6) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_7> for ICoreWebView2
impl From<ICoreWebView2_7> for ICoreWebView2
source§fn from(value: ICoreWebView2_7) -> Self
fn from(value: ICoreWebView2_7) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_8> for ICoreWebView2
impl From<ICoreWebView2_8> for ICoreWebView2
source§fn from(value: ICoreWebView2_8) -> Self
fn from(value: ICoreWebView2_8) -> Self
Converts to this type from the input type.
source§impl From<ICoreWebView2_9> for ICoreWebView2
impl From<ICoreWebView2_9> for ICoreWebView2
source§fn from(value: ICoreWebView2_9) -> Self
fn from(value: ICoreWebView2_9) -> Self
Converts to this type from the input type.
source§impl Interface for ICoreWebView2
impl Interface for ICoreWebView2
source§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.source§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
source§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read moresource§impl PartialEq for ICoreWebView2
impl PartialEq for ICoreWebView2
source§fn eq(&self, other: &ICoreWebView2) -> bool
fn eq(&self, other: &ICoreWebView2) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ICoreWebView2
impl StructuralPartialEq for ICoreWebView2
Auto Trait Implementations§
impl RefUnwindSafe for ICoreWebView2
impl !Send for ICoreWebView2
impl !Sync for ICoreWebView2
impl Unpin for ICoreWebView2
impl UnwindSafe for ICoreWebView2
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