Struct rss2email_lib::Post
source · pub struct Post {
pub title: String,
pub link: String,
pub description: Option<String>,
pub pub_date: DateTime<Utc>,
}
Expand description
Internal representation of a web feed post.
The pub_date
field will prefer the publication date
and fallback to the last update date.
Fields§
§title: String
§link: String
§description: Option<String>
§pub_date: DateTime<Utc>
Trait Implementations§
source§impl PartialEq for Post
impl PartialEq for Post
impl Eq for Post
impl StructuralPartialEq for Post
Auto Trait Implementations§
impl RefUnwindSafe for Post
impl Send for Post
impl Sync for Post
impl Unpin for Post
impl UnwindSafe for Post
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.