Struct cdp::page::FrameResourceTree
[−]
[src]
pub struct FrameResourceTree<'a> { pub frame: Frame<'a>, pub child_frames: Option<Vec<Box<FrameResourceTree<'a>>>>, pub resources: Vec<FrameResource<'a>>, }
[Experimental] Information about the Frame hierarchy along with their cached resources.
Fields
frame: Frame<'a>
Frame information for this tree item.
child_frames: Option<Vec<Box<FrameResourceTree<'a>>>>
Child frames.
resources: Vec<FrameResource<'a>>
Information about frame resources.
Trait Implementations
impl<'a> Clone for FrameResourceTree<'a>
[src]
fn clone(&self) -> FrameResourceTree<'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 FrameResourceTree<'a>
[src]
impl<'a> PartialEq for FrameResourceTree<'a>
[src]
fn eq(&self, __arg_0: &FrameResourceTree<'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: &FrameResourceTree<'a>) -> bool
[src]
This method tests for !=
.