pub struct FeedEntry {
pub url: String,
pub title: Option<String>,
pub published: Option<String>,
}Expand description
An entry discovered from an RSS/Atom feed.
Fields§
§url: StringThe URL of the feed entry.
title: Option<String>Title of the entry (if available).
published: Option<String>Publication date (if available).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FeedEntry
impl RefUnwindSafe for FeedEntry
impl Send for FeedEntry
impl Sync for FeedEntry
impl Unpin for FeedEntry
impl UnsafeUnpin for FeedEntry
impl UnwindSafe for FeedEntry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more