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 information for this tree item.

Child frames.

Information about frame resources.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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