Struct chrome_remote_interface_model::network::ResponseReceivedExtraInfoEventBuilder[][src]

pub struct ResponseReceivedExtraInfoEventBuilder { /* fields omitted */ }
This is supported on crate features Network and Debugger and Runtime and Security and experimental only.

Implementations

impl ResponseReceivedExtraInfoEventBuilder[src]

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

Request identifier. Used to match this information to another responseReceived event.

pub fn blocked_cookies(&mut self, v: Vec<JsonValue>) -> &mut Self[src]

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.

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

Raw response headers as they were received over the wire.

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

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.

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

Trait Implementations

impl Clone for ResponseReceivedExtraInfoEventBuilder[src]

impl Debug for ResponseReceivedExtraInfoEventBuilder[src]

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