pub struct UserFollowings {
pub list: Vec<UserFollowing>,
pub re_version: u32,
pub total: u64,
}Expand description
Following-list payload returned by /x/relation/followings.
Fields§
§list: Vec<UserFollowing>Users followed by the requested member.
re_version: u32Bilibili relation-list schema version.
total: u64Total number of followed users.
Trait Implementations§
Source§impl Clone for UserFollowings
impl Clone for UserFollowings
Source§fn clone(&self) -> UserFollowings
fn clone(&self) -> UserFollowings
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 UserFollowings
impl Debug for UserFollowings
Source§impl<'de> Deserialize<'de> for UserFollowings
impl<'de> Deserialize<'de> for UserFollowings
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 UserFollowings
impl RefUnwindSafe for UserFollowings
impl Send for UserFollowings
impl Sync for UserFollowings
impl Unpin for UserFollowings
impl UnsafeUnpin for UserFollowings
impl UnwindSafe for UserFollowings
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