Enum sxd_xpath::nodeset::Node [] [src]

pub enum Node<'d> {
    Root(Root<'d>),
    Element(Element<'d>),
    Attribute(Attribute<'d>),
    Text(Text<'d>),
    Comment(Comment<'d>),
    Namespace(Namespace<'d>),
    ProcessingInstruction(ProcessingInstruction<'d>),
}

Variants

Methods

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

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

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

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

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

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

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

Trait Implementations

impl<'d> Copy for Node<'d>
[src]

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'d> PartialEq for Node<'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> Eq for Node<'d>
[src]

impl<'d> Hash for Node<'d>
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

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

Formats the value using the given formatter.

impl<'d> From<Root<'d>> for Node<'d>
[src]

Performs the conversion.

impl<'d> From<Element<'d>> for Node<'d>
[src]

Performs the conversion.

impl<'d> From<Attribute<'d>> for Node<'d>
[src]

Performs the conversion.

impl<'d> From<Text<'d>> for Node<'d>
[src]

Performs the conversion.

impl<'d> From<Comment<'d>> for Node<'d>
[src]

Performs the conversion.

impl<'d> From<ProcessingInstruction<'d>> for Node<'d>
[src]

Performs the conversion.