Enum syndication::Feed [] [src]

pub enum Feed {
    Atom(Feed),
    RSS(Channel),
}

Variants

Atom(Feed)RSS(Channel)

Trait Implementations

impl FromStr for Feed
[src]

type Err = &'static str

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more

impl ToString for Feed
[src]

fn to_string(&self) -> String

Converts the given value to a String. Read more