Struct sxd_xpath::nodeset::Nodeset [] [src]

pub struct Nodeset<'d> { /* fields omitted */ }

An unordered collection of unique nodes

Methods

impl<'d> Nodeset<'d>
[src]

Checks if the node is present in the set

Add the given node to the set

Returns the node that occurs first in document order

Trait Implementations

impl<'d> Debug for Nodeset<'d>
[src]

Formats the value using the given formatter.

impl<'d> Default for Nodeset<'d>
[src]

Returns the "default value" for a type. Read more

impl<'d> Clone for Nodeset<'d>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'d> PartialEq for Nodeset<'d>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'d> Extend<Node<'d>> for Nodeset<'d>
[src]

Extends a collection with the contents of an iterator. Read more

impl<'a, 'd: 'a> IntoIterator for &'a Nodeset<'d>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<'d> IntoIterator for Nodeset<'d>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<'d> From<OrderedNodes<'d>> for Nodeset<'d>
[src]

Performs the conversion.

impl<'d> FromIterator<Node<'d>> for Nodeset<'d>
[src]

Creates a value from an iterator. Read more

impl<'d> PartialEq<Value<'d>> for Nodeset<'d>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.