Struct chrome_remote_interface_model::page::JavascriptDialogOpeningEvent[][src]

pub struct JavascriptDialogOpeningEvent { /* fields omitted */ }
This is supported on crate features Page and Debugger and DOM and IO and Network and Runtime only.

Fired when a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload) is about to open.

Implementations

impl JavascriptDialogOpeningEvent[src]

pub fn builder() -> JavascriptDialogOpeningEventBuilder[src]

pub fn url(&self) -> &str[src]

Frame url.

pub fn message(&self) -> &str[src]

Message that will be displayed by the dialog.

pub fn type(&self) -> &DialogType[src]

Dialog type.

pub fn has_browser_handler(&self) -> bool[src]

True iff browser is capable showing or acting on the given dialog. When browser has no dialog handler for given target, calling alert while Page domain is engaged will stall the page execution. Execution can be resumed via calling Page.handleJavaScriptDialog.

pub fn default_prompt(&self) -> Option<&String>[src]

Default dialog prompt.

Trait Implementations

impl Clone for JavascriptDialogOpeningEvent[src]

impl Debug for JavascriptDialogOpeningEvent[src]

impl<'de> Deserialize<'de> for JavascriptDialogOpeningEvent[src]

impl Serialize for JavascriptDialogOpeningEvent[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.