trait HasDescendants<'a, 'input> {
    // Required method
    fn descendants(&'a self) -> Descendants<'a, 'input>;
}

Required Methods§

source

fn descendants(&'a self) -> Descendants<'a, 'input>

Implementations on Foreign Types§

source§

impl<'a, 'input> HasDescendants<'a, 'input> for Document<'input>

source§

fn descendants(&'a self) -> Descendants<'a, 'input>

source§

impl<'a, 'input> HasDescendants<'a, 'input> for Node<'a, 'input>

source§

fn descendants(&'a self) -> Descendants<'a, 'input>

source§

impl<'a, 'input, T> HasDescendants<'a, 'input> for &T
where T: HasDescendants<'a, 'input>,

source§

fn descendants(&'a self) -> Descendants<'a, 'input>

Implementors§