Struct cdp::cache_storage::DataEntry [] [src]

pub struct DataEntry<'a> {
    pub request_url: Cow<'a, str>,
    pub request_method: Cow<'a, str>,
    pub request_headers: Vec<Header<'a>>,
    pub response_time: f64,
    pub response_status: i32,
    pub response_status_text: Cow<'a, str>,
    pub response_headers: Vec<Header<'a>>,
}

[Experimental] Data entry.

Fields

Request URL.

Request method.

Request headers

Number of seconds since epoch.

HTTP response status code.

HTTP response status text.

Response headers

Trait Implementations

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

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for DataEntry<'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 !=.