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<Post> for Post
impl PartialEq<Post> for Post
impl Eq for Post
impl StructuralEq 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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.