Struct chrome_remote_interface_model::dom_snapshot::CaptureSnapshotCommand[][src]

pub struct CaptureSnapshotCommand { /* fields omitted */ }
This is supported on crate features experimental and DOMSnapshot and CSS and DOM and DOMDebugger and Page only.

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

pub fn new(
    computed_styles: Vec<String>,
    include_paint_order: Option<bool>,
    include_dom_rects: Option<bool>
) -> Self
[src]

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

Notable traits for &'_ [u8]

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

Whitelist of computed styles to return.

pub fn include_paint_order(&self) -> Option<&bool>[src]

Whether to include layout object paint orders into the snapshot.

pub fn include_dom_rects(&self) -> Option<&bool>[src]

Whether to include DOM rectangles (offsetRects, clientRects, scrollRects) into the snapshot

Trait Implementations

impl Clone for CaptureSnapshotCommand[src]

impl Command for CaptureSnapshotCommand[src]

type Return = CaptureSnapshotReturn

Return type.

impl Debug for CaptureSnapshotCommand[src]

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

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