pub struct FeedEntry {
pub id: u32,
pub title: String,
pub url: String,
pub published: String,
pub summary: String,
}Expand description
A single RSS/Atom feed entry with an assigned numeric ID.
Fields§
§id: u32§title: String§url: String§published: String§summary: StringTrait 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 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