Struct feedbin_api::models::entry::Entry
source · pub struct Entry {Show 14 fields
pub id: EntryID,
pub feed_id: FeedID,
pub title: Option<String>,
pub url: String,
pub extracted_content_url: String,
pub author: Option<String>,
pub content: Option<String>,
pub summary: Option<String>,
pub published: String,
pub created_at: String,
pub original: Option<OriginalContent>,
pub images: Option<EntryImages>,
pub enclosure: Option<EntryEnclosure>,
pub extracted_articles: Option<Vec<ExtractedArticle>>,
}Fields§
§id: EntryID§feed_id: FeedID§title: Option<String>§url: String§extracted_content_url: String§content: Option<String>§summary: Option<String>§published: String§created_at: String§original: Option<OriginalContent>§images: Option<EntryImages>§enclosure: Option<EntryEnclosure>§extracted_articles: Option<Vec<ExtractedArticle>>Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Entry
impl<'de> Deserialize<'de> for Entry
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more