Struct chrome_remote_interface_model::page::JavascriptDialogOpeningEventBuilder[][src]

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

Implementations

impl JavascriptDialogOpeningEventBuilder[src]

pub fn url(&mut self, v: String) -> &mut Self[src]

Frame url.

pub fn message(&mut self, v: String) -> &mut Self[src]

Message that will be displayed by the dialog.

pub fn type(&mut self, v: DialogType) -> &mut Self[src]

Dialog type.

pub fn has_browser_handler(&mut self, v: bool) -> &mut Self[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(&mut self, v: String) -> &mut Self[src]

Default dialog prompt.

pub fn build(&mut self) -> Result<JavascriptDialogOpeningEvent, &'static str>[src]

Trait Implementations

impl Clone for JavascriptDialogOpeningEventBuilder[src]

impl Debug for JavascriptDialogOpeningEventBuilder[src]

impl Default for JavascriptDialogOpeningEventBuilder[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> 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.