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§
impl Eq for Blog
impl StructuralPartialEq for Blog
Auto Trait Implementations§
impl Freeze for Blog
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.