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: Cow<'a, str>
Request URL.
request_method: Cow<'a, str>
Request method.
request_headers: Vec<Header<'a>>
Request headers
response_time: f64
Number of seconds since epoch.
response_status: i32
HTTP response status code.
response_status_text: Cow<'a, str>
HTTP response status text.
response_headers: Vec<Header<'a>>
Response headers
Trait Implementations
impl<'a> Clone for DataEntry<'a>[src]
fn clone(&self) -> DataEntry<'a>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more