Struct rss::extension::Extension [] [src]

pub struct Extension {
    pub name: String,
    pub value: Option<String>,
    pub attrs: HashMap<String, String>,
    pub children: HashMap<String, Vec<Extension>>,
}

A namespaced extension such as iTunes or Dublin Core.

Fields

The qualified name of the extension element.

The content of the extension element.

The attributes for the extension element.

The children of the extension element. This is a map of local names to child elements.

Trait Implementations

impl Debug for Extension
[src]

Formats the value using the given formatter.

impl Default for Extension
[src]

Returns the "default value" for a type. Read more

impl Clone for Extension
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Extension
[src]

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

This method tests for !=.