pub struct Article {Show 16 fields
pub id: String,
pub version: String,
pub title: String,
pub sub_title: String,
pub summary: String,
pub source_id: String,
pub show_date: String,
pub release_date: String,
pub content: String,
pub keywords: String,
pub entity_type: String,
pub title_image_url: String,
pub article_static_url: String,
pub article_dynamic_url: String,
pub page_name: String,
pub create_date: String,
}Expand description
Article information.
Fields§
§id: StringArticle ID.
version: StringArticle version.
title: StringArticle title.
sub_title: StringArticle subtitle.
summary: StringArticle summary.
source_id: StringSource ID.
show_date: StringDisplay date.
release_date: StringRelease date.
content: StringArticle content.
keywords: StringKeywords.
entity_type: StringEntity type (e.g., “HTML”).
title_image_url: StringTitle image URL.
article_static_url: StringArticle static URL.
article_dynamic_url: StringArticle dynamic URL.
page_name: StringPage name.
create_date: StringCreation date.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Article
impl<'de> Deserialize<'de> for Article
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
Auto Trait Implementations§
impl Freeze for Article
impl RefUnwindSafe for Article
impl Send for Article
impl Sync for Article
impl Unpin for Article
impl UnwindSafe for Article
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