pub struct ResponseReceivedExtraInfoEvent { /* private fields */ }Network and Debugger and Runtime and Security and experimental only.Expand description
Fired when additional information about a responseReceived event is available from the network stack. Not every responseReceived event will have an additional responseReceivedExtraInfo for it, and responseReceivedExtraInfo may be fired before or after responseReceived.
Implementations§
Source§impl ResponseReceivedExtraInfoEvent
impl ResponseReceivedExtraInfoEvent
pub fn builder() -> ResponseReceivedExtraInfoEventBuilder
Sourcepub fn request_id(&self) -> &RequestId
pub fn request_id(&self) -> &RequestId
Request identifier. Used to match this information to another responseReceived event.
A list of cookies which were not stored from the response along with the corresponding reasons for blocking. The cookies here may not be valid due to syntax errors, which are represented by the invalid cookie line string instead of a proper cookie.
Sourcepub fn resource_ip_address_space(&self) -> &JsonValue
pub fn resource_ip_address_space(&self) -> &JsonValue
The IP address space of the resource. The address space can only be determined once the transport
established the connection, so we can’t send it in requestWillBeSentExtraInfo.
Sourcepub fn headers_text(&self) -> Option<&String>
pub fn headers_text(&self) -> Option<&String>
Raw response header text as it was received over the wire. The raw text may not always be available, such as in the case of HTTP/2 or QUIC.
Trait Implementations§
Source§impl Clone for ResponseReceivedExtraInfoEvent
impl Clone for ResponseReceivedExtraInfoEvent
Source§fn clone(&self) -> ResponseReceivedExtraInfoEvent
fn clone(&self) -> ResponseReceivedExtraInfoEvent
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more