Struct cdp::network::CachedResource
[−]
[src]
pub struct CachedResource<'a> {
pub url: Cow<'a, str>,
pub ty: ResourceType,
pub response: Option<Response<'a>>,
pub body_size: f64,
}Information about the cached resource.
Fields
url: Cow<'a, str>
Resource URL. This is the url of the original network request.
ty: ResourceType
Type of this resource.
response: Option<Response<'a>>
Cached response data.
body_size: f64
Cached response body size.
Trait Implementations
impl<'a> Clone for CachedResource<'a>[src]
fn clone(&self) -> CachedResource<'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
impl<'a> Debug for CachedResource<'a>[src]
impl<'a> PartialEq for CachedResource<'a>[src]
fn eq(&self, __arg_0: &CachedResource<'a>) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &CachedResource<'a>) -> bool[src]
This method tests for !=.