Enum xml::Xml [] [src]

pub enum Xml {
    ElementNode(Element),
    CharacterNode(String),
    CDATANode(String),
    CommentNode(String),
    PINode(String),
}

An Enum describing a XML Node

Variants

An XML Element

Character Data

CDATA

A XML Comment

Processing Information

Trait Implementations

impl Clone for Xml
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Xml
[src]

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

This method tests for !=.

impl Debug for Xml
[src]

Formats the value using the given formatter.

impl Display for Xml
[src]

Formats the value using the given formatter. Read more