pub struct ArticleList {Show 15 fields
pub apply_time: String,
pub articles_count: i32,
pub check_time: String,
pub ctime: i64,
pub id: i64,
pub image_url: String,
pub mid: i64,
pub name: String,
pub publish_time: i64,
pub read: i64,
pub reason: String,
pub state: i32,
pub summary: String,
pub update_time: i64,
pub words: i64,
}Expand description
专栏文集信息
Fields§
§apply_time: String申请时间
articles_count: i32文章数量
check_time: String审核时间
ctime: i64创建时间
id: i64文集ID
image_url: String文集图片
mid: i64作者ID
name: String文集名称
publish_time: i64发布时间
read: i64阅读量
reason: String原因
state: i32状态
summary: String摘要
update_time: i64更新时间
words: i64字数
Trait Implementations§
Source§impl Clone for ArticleList
impl Clone for ArticleList
Source§fn clone(&self) -> ArticleList
fn clone(&self) -> ArticleList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ArticleList
impl Debug for ArticleList
Source§impl<'de> Deserialize<'de> for ArticleList
impl<'de> Deserialize<'de> for ArticleList
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 ArticleList
impl RefUnwindSafe for ArticleList
impl Send for ArticleList
impl Sync for ArticleList
impl Unpin for ArticleList
impl UnsafeUnpin for ArticleList
impl UnwindSafe for ArticleList
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