Struct feed_rs::feed::Feed [] [src]

pub struct Feed {
    pub id: String,
    pub title: Option<String>,
    pub description: Option<String>,
    pub language: Option<String>,
    pub website: Option<String>,
    pub topics: Option<Vec<String>>,
    pub last_updated: Option<NaiveDateTime>,
    pub visual_url: Option<String>,
    pub icon_url: Option<String>,
    pub cover_url: Option<String>,
    pub entries: Vec<Entry>,
}

Fields

Methods

impl Feed
[src]

Trait Implementations

impl Debug for Feed
[src]

Formats the value using the given formatter.

impl Clone for Feed
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more