Struct rss2email_lib::Blog
source · pub struct Blog {
pub title: String,
pub most_recent_pub_date: DateTime<Utc>,
pub posts: Vec<Post>,
}Expand description
Internal representation of a web feed.
Fields§
§title: String§most_recent_pub_date: DateTime<Utc>§posts: Vec<Post>Trait Implementations§
source§impl PartialEq<Blog> for Blog
impl PartialEq<Blog> for Blog
impl Eq for Blog
impl StructuralEq for Blog
impl StructuralPartialEq for Blog
Auto Trait Implementations§
impl RefUnwindSafe for Blog
impl Send for Blog
impl Sync for Blog
impl Unpin for Blog
impl UnwindSafe for Blog
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.