[][src]Struct gemini_feed::Feed

pub struct Feed {
    pub base_url: String,
    pub title: String,
    pub subtitle: Option<String>,
    pub entries: Vec<Entry>,
}

Represents a gemini feed

Fields

base_url: String

Base URL for the feed

Combine with entry feeds to construct full entry URLs.

title: String

Feed's title

subtitle: Option<String>

Feed's optional subtitle

entries: Vec<Entry>

Feed's entries

Trait Implementations

impl Debug for Feed[src]

impl TryFrom<Page> for Feed[src]

type Error = TryFromPageError

The type returned in the event of a conversion error.

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.