[][src]Enum xml::Xml

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

An Enum describing a XML Node

Variants

ElementNode(Element)

An XML Element

CharacterNode(String)

Character Data

CDATANode(String)

CDATA

CommentNode(String)

A XML Comment

PINode(String)

Processing Information

Trait Implementations

impl Clone for Xml[src]

impl Debug for Xml[src]

impl Display for Xml[src]

impl PartialEq<Xml> for Xml[src]

impl StructuralPartialEq for Xml[src]

Auto Trait Implementations

impl RefUnwindSafe for Xml

impl Send for Xml

impl Sync for Xml

impl Unpin for Xml

impl UnwindSafe for Xml

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> 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> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.