Struct chrome_remote_interface_model::dom_snapshot::CaptureSnapshotReturn[][src]

pub struct CaptureSnapshotReturn { /* fields omitted */ }

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 CaptureSnapshotReturn[src]

pub fn new(documents: Vec<DocumentSnapshot>, strings: Vec<String>) -> Self[src]

pub fn documents(&self) -> &[DocumentSnapshot]

Notable traits for &'_ mut [u8]

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

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

pub fn strings(&self) -> &[String]

Notable traits for &'_ mut [u8]

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

Shared string table that all string properties refer to with indexes.

Trait Implementations

impl Clone for CaptureSnapshotReturn[src]

impl Debug for CaptureSnapshotReturn[src]

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

impl Serialize for CaptureSnapshotReturn[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.