pub struct ArticlesData {
pub list: ArticleList,
pub articles: Vec<ArticleItem>,
pub author: ArticleAuthor,
pub last: ArticleItem,
pub attention: bool,
}
Expand description
文集基本信息数据
Fields§
§list: ArticleList
文集概览
articles: Vec<ArticleItem>
文集内的文章列表
文集作者信息
last: ArticleItem
作用尚不明确 结构与data.articles[]中相似
attention: bool
是否关注文集作者 false:未关注 true:已关注 需要登录(Cookie) 未登录为false
Trait Implementations§
Source§impl Clone for ArticlesData
impl Clone for ArticlesData
Source§fn clone(&self) -> ArticlesData
fn clone(&self) -> ArticlesData
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 ArticlesData
impl Debug for ArticlesData
Source§impl<'de> Deserialize<'de> for ArticlesData
impl<'de> Deserialize<'de> for ArticlesData
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 ArticlesData
impl RefUnwindSafe for ArticlesData
impl Send for ArticlesData
impl Sync for ArticlesData
impl Unpin for ArticlesData
impl UnwindSafe for ArticlesData
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