Struct chrome_remote_interface_model::page::FrameScheduledNavigationEvent[][src]

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

Fired when frame schedules a potential navigation.

Implementations

impl FrameScheduledNavigationEvent[src]

pub fn builder() -> FrameScheduledNavigationEventBuilder[src]

👎 Deprecated

pub fn frame_id(&self) -> &FrameId[src]

👎 Deprecated

Id of the frame that has scheduled a navigation.

pub fn delay(&self) -> f64[src]

👎 Deprecated

Delay (in seconds) until the navigation is scheduled to begin. The navigation is not guaranteed to start.

pub fn reason(&self) -> &JsonValue[src]

👎 Deprecated

The reason for the navigation.

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

👎 Deprecated

The destination URL for the scheduled navigation.

Trait Implementations

impl Clone for FrameScheduledNavigationEvent[src]

impl Debug for FrameScheduledNavigationEvent[src]

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

impl Serialize for FrameScheduledNavigationEvent[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.