Struct cdp::page::FrameScheduledNavigationEvent [] [src]

pub struct FrameScheduledNavigationEvent<'a> {
    pub frame_id: FrameId<'a>,
    pub delay: f64,
    pub reason: FrameScheduledNavigationEventReason,
    pub url: Cow<'a, str>,
}

[Experimental] Fired when frame schedules a potential navigation.

Event Page.frameScheduledNavigation

Domain Module: cdp::page
Event Struct: cdp::page::FrameScheduledNavigationEvent

Fields

Id of the frame that has scheduled a navigation.

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

[Experimental] The reason for the navigation.

[Experimental] The destination URL for the scheduled navigation.

Trait Implementations

impl<'a> Clone for FrameScheduledNavigationEvent<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for FrameScheduledNavigationEvent<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for FrameScheduledNavigationEvent<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<'a> CdpEvent for FrameScheduledNavigationEvent<'a>
[src]

EVENT_NAME: &'static str = "Page.frameScheduledNavigation"

impl<'a> SerializeCdpEvent for FrameScheduledNavigationEvent<'a>
[src]

[src]

[src]

impl<'de, 'a> DeserializeCdpEvent<'de> for FrameScheduledNavigationEvent<'a>
[src]

[src]