Struct webview2_com_sys::Microsoft::Web::WebView2::Win32::ICoreWebView2
source · [−]#[repr(transparent)]pub struct ICoreWebView2(_);
Implementations
sourceimpl ICoreWebView2
impl ICoreWebView2
pub unsafe fn Settings(&self) -> Result<ICoreWebView2Settings>
pub unsafe fn Source(&self, uri: *mut PWSTR) -> Result<()>
pub unsafe fn ContentLoading<'a, Param0: IntoParam<'a, ICoreWebView2ContentLoadingEventHandler>>(
&self,
eventhandler: Param0,
token: *mut EventRegistrationToken
) -> Result<()>
pub unsafe fn RemoveContentLoading<'a, Param0: IntoParam<'a, EventRegistrationToken>>(
&self,
token: Param0
) -> Result<()>
pub unsafe fn SourceChanged<'a, Param0: IntoParam<'a, ICoreWebView2SourceChangedEventHandler>>(
&self,
eventhandler: Param0,
token: *mut EventRegistrationToken
) -> Result<()>
pub unsafe fn RemoveSourceChanged<'a, Param0: IntoParam<'a, EventRegistrationToken>>(
&self,
token: Param0
) -> Result<()>
pub unsafe fn HistoryChanged<'a, Param0: IntoParam<'a, ICoreWebView2HistoryChangedEventHandler>>(
&self,
eventhandler: Param0,
token: *mut EventRegistrationToken
) -> Result<()>
pub unsafe fn RemoveHistoryChanged<'a, Param0: IntoParam<'a, EventRegistrationToken>>(
&self,
token: Param0
) -> Result<()>
pub unsafe fn ScriptDialogOpening<'a, Param0: IntoParam<'a, ICoreWebView2ScriptDialogOpeningEventHandler>>(
&self,
eventhandler: Param0,
token: *mut EventRegistrationToken
) -> Result<()>
pub unsafe fn RemoveScriptDialogOpening<'a, Param0: IntoParam<'a, EventRegistrationToken>>(
&self,
token: Param0
) -> Result<()>
pub unsafe fn PermissionRequested<'a, Param0: IntoParam<'a, ICoreWebView2PermissionRequestedEventHandler>>(
&self,
eventhandler: Param0,
token: *mut EventRegistrationToken
) -> Result<()>
pub unsafe fn RemovePermissionRequested<'a, Param0: IntoParam<'a, EventRegistrationToken>>(
&self,
token: Param0
) -> Result<()>
pub unsafe fn ProcessFailed<'a, Param0: IntoParam<'a, ICoreWebView2ProcessFailedEventHandler>>(
&self,
eventhandler: Param0,
token: *mut EventRegistrationToken
) -> Result<()>
pub unsafe fn RemoveProcessFailed<'a, Param0: IntoParam<'a, EventRegistrationToken>>(
&self,
token: Param0
) -> Result<()>
pub unsafe fn AddScriptToExecuteOnDocumentCreated<'a, Param0: IntoParam<'a, PWSTR>, Param1: IntoParam<'a, ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandler>>(
&self,
javascript: Param0,
handler: Param1
) -> Result<()>
pub unsafe fn RemoveScriptToExecuteOnDocumentCreated<'a, Param0: IntoParam<'a, PWSTR>>(
&self,
id: Param0
) -> Result<()>
pub unsafe fn ExecuteScript<'a, Param0: IntoParam<'a, PWSTR>, Param1: IntoParam<'a, ICoreWebView2ExecuteScriptCompletedHandler>>(
&self,
javascript: Param0,
handler: Param1
) -> Result<()>
pub unsafe fn CapturePreview<'a, Param1: IntoParam<'a, IStream>, Param2: IntoParam<'a, ICoreWebView2CapturePreviewCompletedHandler>>(
&self,
imageformat: COREWEBVIEW2_CAPTURE_PREVIEW_IMAGE_FORMAT,
imagestream: Param1,
handler: Param2
) -> Result<()>
pub unsafe fn Reload(&self) -> Result<()>
pub unsafe fn PostWebMessageAsJson<'a, Param0: IntoParam<'a, PWSTR>>(
&self,
webmessageasjson: Param0
) -> Result<()>
pub unsafe fn PostWebMessageAsString<'a, Param0: IntoParam<'a, PWSTR>>(
&self,
webmessageasstring: Param0
) -> Result<()>
pub unsafe fn WebMessageReceived<'a, Param0: IntoParam<'a, ICoreWebView2WebMessageReceivedEventHandler>>(
&self,
handler: Param0,
token: *mut EventRegistrationToken
) -> Result<()>
pub unsafe fn RemoveWebMessageReceived<'a, Param0: IntoParam<'a, EventRegistrationToken>>(
&self,
token: Param0
) -> Result<()>
pub unsafe fn CallDevToolsProtocolMethod<'a, Param0: IntoParam<'a, PWSTR>, Param1: IntoParam<'a, PWSTR>, Param2: IntoParam<'a, ICoreWebView2CallDevToolsProtocolMethodCompletedHandler>>(
&self,
methodname: Param0,
parametersasjson: Param1,
handler: Param2
) -> Result<()>
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<'a, Param0: IntoParam<'a, PWSTR>>(
&self,
eventname: Param0
) -> Result<ICoreWebView2DevToolsProtocolEventReceiver>
pub unsafe fn Stop(&self) -> Result<()>
pub unsafe fn NewWindowRequested<'a, Param0: IntoParam<'a, ICoreWebView2NewWindowRequestedEventHandler>>(
&self,
eventhandler: Param0,
token: *mut EventRegistrationToken
) -> Result<()>
pub unsafe fn RemoveNewWindowRequested<'a, Param0: IntoParam<'a, EventRegistrationToken>>(
&self,
token: Param0
) -> Result<()>
pub unsafe fn DocumentTitleChanged<'a, Param0: IntoParam<'a, ICoreWebView2DocumentTitleChangedEventHandler>>(
&self,
eventhandler: Param0,
token: *mut EventRegistrationToken
) -> Result<()>
pub unsafe fn RemoveDocumentTitleChanged<'a, Param0: IntoParam<'a, EventRegistrationToken>>(
&self,
token: Param0
) -> Result<()>
pub unsafe fn DocumentTitle(&self, title: *mut PWSTR) -> Result<()>
pub unsafe fn AddHostObjectToScript<'a, Param0: IntoParam<'a, PWSTR>>(
&self,
name: Param0,
object: *mut VARIANT
) -> Result<()>
pub unsafe fn RemoveHostObjectFromScript<'a, Param0: IntoParam<'a, PWSTR>>(
&self,
name: Param0
) -> Result<()>
pub unsafe fn OpenDevToolsWindow(&self) -> Result<()>
pub unsafe fn ContainsFullScreenElementChanged<'a, Param0: IntoParam<'a, ICoreWebView2ContainsFullScreenElementChangedEventHandler>>(
&self,
eventhandler: Param0,
token: *mut EventRegistrationToken
) -> Result<()>
pub unsafe fn RemoveContainsFullScreenElementChanged<'a, Param0: IntoParam<'a, EventRegistrationToken>>(
&self,
token: Param0
) -> Result<()>
pub unsafe fn ContainsFullScreenElement(
&self,
containsfullscreenelement: *mut BOOL
) -> Result<()>
pub unsafe fn WebResourceRequested<'a, Param0: IntoParam<'a, ICoreWebView2WebResourceRequestedEventHandler>>(
&self,
eventhandler: Param0,
token: *mut EventRegistrationToken
) -> Result<()>
pub unsafe fn RemoveWebResourceRequested<'a, Param0: IntoParam<'a, EventRegistrationToken>>(
&self,
token: Param0
) -> Result<()>
pub unsafe fn AddWebResourceRequestedFilter<'a, Param0: IntoParam<'a, PWSTR>>(
&self,
uri: Param0,
resourcecontext: COREWEBVIEW2_WEB_RESOURCE_CONTEXT
) -> Result<()>
pub unsafe fn RemoveWebResourceRequestedFilter<'a, Param0: IntoParam<'a, PWSTR>>(
&self,
uri: Param0,
resourcecontext: COREWEBVIEW2_WEB_RESOURCE_CONTEXT
) -> Result<()>
pub unsafe fn WindowCloseRequested<'a, Param0: IntoParam<'a, ICoreWebView2WindowCloseRequestedEventHandler>>(
&self,
eventhandler: Param0,
token: *mut EventRegistrationToken
) -> Result<()>
pub unsafe fn RemoveWindowCloseRequested<'a, Param0: IntoParam<'a, EventRegistrationToken>>(
&self,
token: Param0
) -> Result<()>
Trait Implementations
sourceimpl Clone for ICoreWebView2
impl Clone for ICoreWebView2
sourceimpl Debug for ICoreWebView2
impl Debug for ICoreWebView2
sourceimpl From<&'_ ICoreWebView2> for IUnknown
impl From<&'_ ICoreWebView2> for IUnknown
sourcefn from(value: &ICoreWebView2) -> Self
fn from(value: &ICoreWebView2) -> Self
Converts to this type from the input type.
sourceimpl From<&'_ ICoreWebView2_10> for ICoreWebView2
impl From<&'_ ICoreWebView2_10> for ICoreWebView2
sourcefn from(value: &ICoreWebView2_10) -> Self
fn from(value: &ICoreWebView2_10) -> Self
Converts to this type from the input type.
sourceimpl From<&'_ ICoreWebView2_2> for ICoreWebView2
impl From<&'_ ICoreWebView2_2> for ICoreWebView2
sourcefn from(value: &ICoreWebView2_2) -> Self
fn from(value: &ICoreWebView2_2) -> Self
Converts to this type from the input type.
sourceimpl From<&'_ ICoreWebView2_3> for ICoreWebView2
impl From<&'_ ICoreWebView2_3> for ICoreWebView2
sourcefn from(value: &ICoreWebView2_3) -> Self
fn from(value: &ICoreWebView2_3) -> Self
Converts to this type from the input type.
sourceimpl From<&'_ ICoreWebView2_4> for ICoreWebView2
impl From<&'_ ICoreWebView2_4> for ICoreWebView2
sourcefn from(value: &ICoreWebView2_4) -> Self
fn from(value: &ICoreWebView2_4) -> Self
Converts to this type from the input type.
sourceimpl From<&'_ ICoreWebView2_5> for ICoreWebView2
impl From<&'_ ICoreWebView2_5> for ICoreWebView2
sourcefn from(value: &ICoreWebView2_5) -> Self
fn from(value: &ICoreWebView2_5) -> Self
Converts to this type from the input type.
sourceimpl From<&'_ ICoreWebView2_6> for ICoreWebView2
impl From<&'_ ICoreWebView2_6> for ICoreWebView2
sourcefn from(value: &ICoreWebView2_6) -> Self
fn from(value: &ICoreWebView2_6) -> Self
Converts to this type from the input type.
sourceimpl From<&'_ ICoreWebView2_7> for ICoreWebView2
impl From<&'_ ICoreWebView2_7> for ICoreWebView2
sourcefn from(value: &ICoreWebView2_7) -> Self
fn from(value: &ICoreWebView2_7) -> Self
Converts to this type from the input type.
sourceimpl From<&'_ ICoreWebView2_8> for ICoreWebView2
impl From<&'_ ICoreWebView2_8> for ICoreWebView2
sourcefn from(value: &ICoreWebView2_8) -> Self
fn from(value: &ICoreWebView2_8) -> Self
Converts to this type from the input type.
sourceimpl From<&'_ ICoreWebView2_9> for ICoreWebView2
impl From<&'_ ICoreWebView2_9> for ICoreWebView2
sourcefn from(value: &ICoreWebView2_9) -> Self
fn from(value: &ICoreWebView2_9) -> Self
Converts to this type from the input type.
sourceimpl From<ICoreWebView2> for IUnknown
impl From<ICoreWebView2> for IUnknown
sourcefn from(value: ICoreWebView2) -> Self
fn from(value: ICoreWebView2) -> Self
Converts to this type from the input type.
sourceimpl From<ICoreWebView2_10> for ICoreWebView2
impl From<ICoreWebView2_10> for ICoreWebView2
sourcefn from(value: ICoreWebView2_10) -> Self
fn from(value: ICoreWebView2_10) -> Self
Converts to this type from the input type.
sourceimpl From<ICoreWebView2_2> for ICoreWebView2
impl From<ICoreWebView2_2> for ICoreWebView2
sourcefn from(value: ICoreWebView2_2) -> Self
fn from(value: ICoreWebView2_2) -> Self
Converts to this type from the input type.
sourceimpl From<ICoreWebView2_3> for ICoreWebView2
impl From<ICoreWebView2_3> for ICoreWebView2
sourcefn from(value: ICoreWebView2_3) -> Self
fn from(value: ICoreWebView2_3) -> Self
Converts to this type from the input type.
sourceimpl From<ICoreWebView2_4> for ICoreWebView2
impl From<ICoreWebView2_4> for ICoreWebView2
sourcefn from(value: ICoreWebView2_4) -> Self
fn from(value: ICoreWebView2_4) -> Self
Converts to this type from the input type.
sourceimpl From<ICoreWebView2_5> for ICoreWebView2
impl From<ICoreWebView2_5> for ICoreWebView2
sourcefn from(value: ICoreWebView2_5) -> Self
fn from(value: ICoreWebView2_5) -> Self
Converts to this type from the input type.
sourceimpl From<ICoreWebView2_6> for ICoreWebView2
impl From<ICoreWebView2_6> for ICoreWebView2
sourcefn from(value: ICoreWebView2_6) -> Self
fn from(value: ICoreWebView2_6) -> Self
Converts to this type from the input type.
sourceimpl From<ICoreWebView2_7> for ICoreWebView2
impl From<ICoreWebView2_7> for ICoreWebView2
sourcefn from(value: ICoreWebView2_7) -> Self
fn from(value: ICoreWebView2_7) -> Self
Converts to this type from the input type.
sourceimpl From<ICoreWebView2_8> for ICoreWebView2
impl From<ICoreWebView2_8> for ICoreWebView2
sourcefn from(value: ICoreWebView2_8) -> Self
fn from(value: ICoreWebView2_8) -> Self
Converts to this type from the input type.
sourceimpl From<ICoreWebView2_9> for ICoreWebView2
impl From<ICoreWebView2_9> for ICoreWebView2
sourcefn from(value: ICoreWebView2_9) -> Self
fn from(value: ICoreWebView2_9) -> Self
Converts to this type from the input type.
sourceimpl Interface for ICoreWebView2
impl Interface for ICoreWebView2
sourceimpl PartialEq<ICoreWebView2> for ICoreWebView2
impl PartialEq<ICoreWebView2> for ICoreWebView2
impl Eq 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> DefaultType for T where
T: Interface + Clone + PartialEq<T>,
impl<T> DefaultType for T where
T: Interface + Clone + PartialEq<T>,
type DefaultType = Option<T>
sourceunsafe fn from_default(
value: &<T as DefaultType>::DefaultType
) -> Result<T, Error>
unsafe fn from_default(
value: &<T as DefaultType>::DefaultType
) -> Result<T, Error>
Safety
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more