pub struct CCNewsLatestArticle {Show 20 fields
pub type_: String,
pub id: i32,
pub guid: String,
pub published_on: i64,
pub image_url: String,
pub title: String,
pub url: String,
pub source_id: i32,
pub body: String,
pub keywords: String,
pub lang: String,
pub upvotes: i32,
pub downvotes: i32,
pub score: i32,
pub sentiment: String,
pub status: String,
pub created_on: i64,
pub updated_on: i64,
pub source_data: CCNewsSource,
pub category_date: Vec<CCCategoryData>,
}
Expand description
News: Latest Articles
Fields§
§type_: String
§id: i32
§guid: String
§published_on: i64
§image_url: String
§title: String
§url: String
§source_id: i32
§body: String
§keywords: String
§lang: String
§upvotes: i32
§downvotes: i32
§score: i32
§sentiment: String
§status: String
§created_on: i64
§updated_on: i64
§source_data: CCNewsSource
§category_date: Vec<CCCategoryData>
Trait Implementations§
source§impl Debug for CCNewsLatestArticle
impl Debug for CCNewsLatestArticle
source§impl<'de> Deserialize<'de> for CCNewsLatestArticle
impl<'de> Deserialize<'de> for CCNewsLatestArticle
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 CCNewsLatestArticle
impl RefUnwindSafe for CCNewsLatestArticle
impl Send for CCNewsLatestArticle
impl Sync for CCNewsLatestArticle
impl Unpin for CCNewsLatestArticle
impl UnwindSafe for CCNewsLatestArticle
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