[][src]Struct miniflux_api::models::Feed

pub struct Feed {
    pub id: i64,
    pub user_id: i64,
    pub title: String,
    pub site_url: String,
    pub feed_url: String,
    pub rewrite_rules: String,
    pub scraper_rules: String,
    pub crawler: bool,
    pub checked_at: String,
    pub etag_header: String,
    pub last_modified_header: String,
    pub parsing_error_count: i64,
    pub parsing_error_message: String,
    pub category: Category,
    pub icon: Option<FeedIcon>,
}

Fields

id: i64user_id: i64title: Stringsite_url: Stringfeed_url: Stringrewrite_rules: Stringscraper_rules: Stringcrawler: boolchecked_at: Stringetag_header: Stringlast_modified_header: Stringparsing_error_count: i64parsing_error_message: Stringcategory: Categoryicon: Option<FeedIcon>

Implementations

impl Feed[src]

pub fn decompose(
    self
) -> (i64, i64, String, String, String, String, String, bool, String, String, String, i64, String, Category, Option<FeedIcon>)
[src]

destroy this feed and gain ownership of all the data it contains

Trait Implementations

impl Clone for Feed[src]

impl Debug for Feed[src]

impl<'de> Deserialize<'de> for Feed[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument 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, 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.