pub enum RssDataField {
Show 19 variants
AtomLink,
Author,
Category,
Copyright,
Description,
Docs,
Generator,
Guid,
ImageTitle,
ImageUrl,
ImageLink,
Language,
LastBuildDate,
Link,
ManagingEditor,
PubDate,
Title,
Ttl,
Webmaster,
}
Expand description
Represents the fields of an RSS data structure.
Variants§
AtomLink
The Atom link of the RSS feed.
Author
The author of the RSS feed.
Category
The category of the RSS feed.
Copyright
The copyright notice.
Description
The description of the RSS feed.
Docs
The docs link of the RSS feed.
Generator
The generator of the RSS feed.
Guid
The GUID of the RSS feed.
ImageTitle
The image title of the RSS feed.
ImageUrl
The image URL of the RSS feed.
ImageLink
The image link of the RSS feed.
Language
The language of the RSS feed.
LastBuildDate
The last build date of the RSS feed.
Link
The main link to the RSS feed.
ManagingEditor
The managing editor of the RSS feed.
PubDate
The publication date of the RSS feed.
Title
The title of the RSS feed.
Ttl
Time To Live (TTL), the number of minutes the feed should be cached before refreshing.
Webmaster
The webmaster of the RSS feed.
Trait Implementations§
Source§impl Clone for RssDataField
impl Clone for RssDataField
Source§fn clone(&self) -> RssDataField
fn clone(&self) -> RssDataField
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 RssDataField
impl Debug for RssDataField
Source§impl Hash for RssDataField
impl Hash for RssDataField
Source§impl PartialEq for RssDataField
impl PartialEq for RssDataField
impl Copy for RssDataField
impl Eq for RssDataField
impl StructuralPartialEq for RssDataField
Auto Trait Implementations§
impl Freeze for RssDataField
impl RefUnwindSafe for RssDataField
impl Send for RssDataField
impl Sync for RssDataField
impl Unpin for RssDataField
impl UnwindSafe for RssDataField
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