Struct cdp::network::LoadingFailedEvent [] [src]

pub struct LoadingFailedEvent<'a> {
    pub request_id: RequestId<'a>,
    pub timestamp: MonotonicTime,
    pub ty: ResourceType,
    pub error_text: Cow<'a, str>,
    pub canceled: Option<bool>,
    pub blocked_reason: Option<BlockedReason>,
}

Fired when HTTP request has failed to load.

Event Network.loadingFailed

Domain Module: cdp::network
Event Struct: cdp::network::LoadingFailedEvent

Fields

Request identifier.

Timestamp.

Resource type.

User friendly error message.

True if loading was canceled.

[Experimental] The reason why loading was blocked, if any.

Trait Implementations

impl<'a> Clone for LoadingFailedEvent<'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 LoadingFailedEvent<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for LoadingFailedEvent<'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 LoadingFailedEvent<'a>
[src]

EVENT_NAME: &'static str = "Network.loadingFailed"

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

[src]

[src]

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

[src]