pub struct UserBangumiFollowList {
pub items: Vec<UserBangumiFollow>,
pub page: u32,
pub page_size: u32,
pub total: u64,
}Expand description
/x/space/bangumi/follow/list 返回的已追番剧或影视 season。
Fields§
§items: Vec<UserBangumiFollow>当前页的已追 season。
page: u32当前页码。
page_size: u32每页数量。
total: u64该分类下已追 season 总数。
Trait Implementations§
Source§impl Clone for UserBangumiFollowList
impl Clone for UserBangumiFollowList
Source§fn clone(&self) -> UserBangumiFollowList
fn clone(&self) -> UserBangumiFollowList
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 UserBangumiFollowList
impl Debug for UserBangumiFollowList
Source§impl<'de> Deserialize<'de> for UserBangumiFollowList
impl<'de> Deserialize<'de> for UserBangumiFollowList
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 UserBangumiFollowList
impl RefUnwindSafe for UserBangumiFollowList
impl Send for UserBangumiFollowList
impl Sync for UserBangumiFollowList
impl Unpin for UserBangumiFollowList
impl UnsafeUnpin for UserBangumiFollowList
impl UnwindSafe for UserBangumiFollowList
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