pub enum RssItemField {
Guid,
Category,
Description,
Link,
PubDate,
Title,
Author,
Comments,
Enclosure,
Source,
}
Expand description
Represents the fields of an RSS item.
Variants§
Guid
The GUID of the RSS item.
Category
The category of the RSS item.
Description
The description of the RSS item.
Link
The link to the RSS item.
PubDate
The publication date of the RSS item.
Title
The title of the RSS item.
Author
The author of the RSS item.
Comments
The comments URL related to the RSS item.
Enclosure
The enclosure (typically for media like podcasts).
Source
The source of the RSS item.
Trait Implementations§
Source§impl Clone for RssItemField
impl Clone for RssItemField
Source§fn clone(&self) -> RssItemField
fn clone(&self) -> RssItemField
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RssItemField
impl Debug for RssItemField
Source§impl Hash for RssItemField
impl Hash for RssItemField
Source§impl PartialEq for RssItemField
impl PartialEq for RssItemField
impl Copy for RssItemField
impl Eq for RssItemField
impl StructuralPartialEq for RssItemField
Auto Trait Implementations§
impl Freeze for RssItemField
impl RefUnwindSafe for RssItemField
impl Send for RssItemField
impl Sync for RssItemField
impl Unpin for RssItemField
impl UnwindSafe for RssItemField
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