pub struct Item {
pub id: String,
pub crawl_time_msec: Option<String>,
pub timestamp_usec: Option<String>,
pub updated: Option<usize>,
pub published: Option<usize>,
pub title: String,
pub canonical: Vec<Link>,
pub alternate: Vec<Link>,
pub categories: Vec<String>,
pub origin: HashMap<String, String>,
pub summary: Summary,
}
Expand description
Feed Item
Fields§
§id: String
§crawl_time_msec: Option<String>
§timestamp_usec: Option<String>
§updated: Option<usize>
§published: Option<usize>
§title: String
§canonical: Vec<Link>
§alternate: Vec<Link>
§categories: Vec<String>
§origin: HashMap<String, String>
§summary: Summary
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Item
impl<'de> Deserialize<'de> for Item
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Item
impl StructuralPartialEq for Item
Auto Trait Implementations§
impl Freeze for Item
impl RefUnwindSafe for Item
impl Send for Item
impl Sync for Item
impl Unpin for Item
impl UnwindSafe for Item
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.