pub struct ArticleList {Show 15 fields
pub id: i64,
pub mid: i64,
pub name: String,
pub image_url: String,
pub update_time: i64,
pub ctime: i64,
pub publish_time: i64,
pub summary: String,
pub words: i64,
pub read: i64,
pub articles_count: i32,
pub state: i32,
pub reason: String,
pub apply_time: String,
pub check_time: String,
}Expand description
文集概览
Fields§
§id: i64文集rlid
mid: i64文集作者mid
name: String文集名称
image_url: String文集封面图片url
update_time: i64文集更新时间 时间戳
ctime: i64文集创建时间 时间戳
publish_time: i64文集发布时间 时间戳
summary: String文集简介
words: i64文集字数
read: i64文集阅读量
articles_count: i32文集内文章数量
state: i321或3 作用尚不明确
reason: String空 作用尚不明确
apply_time: String空 作用尚不明确
check_time: String空 作用尚不明确
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 · 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 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