[][src]Struct chromiumoxide_cdp::cdp::browser_protocol::dom_snapshot::NodeTreeSnapshotBuilder

pub struct NodeTreeSnapshotBuilder { /* fields omitted */ }

Implementations

impl NodeTreeSnapshotBuilder[src]

pub fn parent_index(self, parent_index: impl Into<i64>) -> Self[src]

pub fn parent_indexs<I, S>(self, parent_indexs: I) -> Self where
    I: IntoIterator<Item = S>,
    S: Into<i64>, 
[src]

pub fn node_type(self, node_type: impl Into<i64>) -> Self[src]

pub fn node_types<I, S>(self, node_types: I) -> Self where
    I: IntoIterator<Item = S>,
    S: Into<i64>, 
[src]

pub fn node_name(self, node_name: impl Into<StringIndex>) -> Self[src]

pub fn node_names<I, S>(self, node_names: I) -> Self where
    I: IntoIterator<Item = S>,
    S: Into<StringIndex>, 
[src]

pub fn node_value(self, node_value: impl Into<StringIndex>) -> Self[src]

pub fn node_values<I, S>(self, node_values: I) -> Self where
    I: IntoIterator<Item = S>,
    S: Into<StringIndex>, 
[src]

pub fn backend_node_id(self, backend_node_id: impl Into<BackendNodeId>) -> Self[src]

pub fn backend_node_ids<I, S>(self, backend_node_ids: I) -> Self where
    I: IntoIterator<Item = S>,
    S: Into<BackendNodeId>, 
[src]

pub fn attribute(self, attribute: impl Into<ArrayOfStrings>) -> Self[src]

pub fn attributes<I, S>(self, attributes: I) -> Self where
    I: IntoIterator<Item = S>,
    S: Into<ArrayOfStrings>, 
[src]

pub fn text_value(self, text_value: impl Into<RareStringData>) -> Self[src]

pub fn input_value(self, input_value: impl Into<RareStringData>) -> Self[src]

pub fn input_checked(self, input_checked: impl Into<RareBooleanData>) -> Self[src]

pub fn option_selected(
    self,
    option_selected: impl Into<RareBooleanData>
) -> Self
[src]

pub fn content_document_index(
    self,
    content_document_index: impl Into<RareIntegerData>
) -> Self
[src]

pub fn pseudo_type(self, pseudo_type: impl Into<RareStringData>) -> Self[src]

pub fn is_clickable(self, is_clickable: impl Into<RareBooleanData>) -> Self[src]

pub fn current_source_url(
    self,
    current_source_url: impl Into<RareStringData>
) -> Self
[src]

pub fn origin_url(self, origin_url: impl Into<RareStringData>) -> Self[src]

pub fn build(self) -> NodeTreeSnapshot[src]

Trait Implementations

impl Clone for NodeTreeSnapshotBuilder[src]

impl Default for NodeTreeSnapshotBuilder[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> 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.