pub struct UserBangumiFollowList {
pub items: Vec<UserBangumiFollow>,
pub page: u32,
pub page_size: u32,
pub total: u64,
}Expand description
Followed bangumi or cinema seasons returned by /x/space/bangumi/follow/list.
Fields§
§items: Vec<UserBangumiFollow>Followed seasons on the current page.
page: u32Current page number.
page_size: u32Page size.
total: u64Total followed seasons for this category.
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