Struct chrome_remote_interface_model::dom_snapshot::GetSnapshotReturn[][src]

pub struct GetSnapshotReturn { /* fields omitted */ }
👎 Deprecated

Returns a document snapshot, including the full DOM tree of the root node (including iframes, template contents, and imported documents) in a flattened array, as well as layout and white-listed computed style information for the nodes. Shadow DOM in the returned DOM tree is flattened.

Implementations

impl GetSnapshotReturn[src]

pub fn new(
    dom_nodes: Vec<DomNode>,
    layout_tree_nodes: Vec<LayoutTreeNode>,
    computed_styles: Vec<ComputedStyle>
) -> Self
[src]

👎 Deprecated

pub fn dom_nodes(&self) -> &[DomNode]

Notable traits for &'_ mut [u8]

impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]
[src]

👎 Deprecated

The nodes in the DOM tree. The DOMNode at index 0 corresponds to the root document.

pub fn layout_tree_nodes(&self) -> &[LayoutTreeNode]

Notable traits for &'_ mut [u8]

impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]
[src]

👎 Deprecated

The nodes in the layout tree.

pub fn computed_styles(&self) -> &[ComputedStyle]

Notable traits for &'_ mut [u8]

impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]
[src]

👎 Deprecated

Whitelisted ComputedStyle properties for each node in the layout tree.

Trait Implementations

impl Clone for GetSnapshotReturn[src]

impl Debug for GetSnapshotReturn[src]

impl<'de> Deserialize<'de> for GetSnapshotReturn[src]

impl Serialize for GetSnapshotReturn[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.