Enum atom_syndication::Content [] [src]

pub enum Content {
    Text(String),
    Html(String),
    Xhtml(Element),
}

Variants

Plain text only, no markup

String containing escaped HTML markup

XHTML div element embedded in the feed

Trait Implementations

impl Clone for Content
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Content
[src]

Formats the value using the given formatter.

impl PartialEq for Content
[src]

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

This method tests for !=.