[][src]Struct htmldom_read::ChildrenFetchMut

pub struct ChildrenFetchMut<'a> { /* fields omitted */ }

Mutable ChildrenFetch. Allows to get mutable access to returned nodes.

Methods

impl<'a> ChildrenFetchMut<'a>[src]

pub fn for_node(node: &'a Node) -> Self[src]

Get children fetcher for given node to find children that apply to some criteria.

pub fn fetch_mut(self) -> LinkedList<&'a mut NodeAccess>[src]

Get all children and their children that apply to the criteria.

pub fn fetch(self) -> LinkedList<&'a NodeAccess>[src]

pub fn same_for_node(&self, node: &'a Node) -> Self[src]

Clone the fetcher with already set criteria but for given different node.

pub fn key(self, key: &'a str) -> Self[src]

Key to search for.

pub fn value(self, value: &'a str) -> Self[src]

Exact value to search for.

pub fn value_part(self, part: &'a str) -> Self[src]

If exact value is not set then this defines a part of the value separated with whitespaces to be found. If value is, however, set then this field is ignored entirely.

Trait Implementations

impl<'a> Copy for ChildrenFetchMut<'a>[src]

impl<'a> Clone for ChildrenFetchMut<'a>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for ChildrenFetchMut<'a>[src]

Auto Trait Implementations

impl<'a> Send for ChildrenFetchMut<'a>

impl<'a> Sync for ChildrenFetchMut<'a>

Blanket Implementations

impl<T, U> Into 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> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.