pub struct UserFollowers {
pub list: Vec<UserFollower>,
pub offset: String,
pub re_version: u32,
pub total: u64,
}Expand description
Follower-list payload returned by /x/relation/fans.
Fields§
§list: Vec<UserFollower>Users following the requested member.
offset: StringPagination offset to pass to the next request.
re_version: u32Bilibili relation-list schema version.
total: u64Total number of followers.
Trait Implementations§
Source§impl Clone for UserFollowers
impl Clone for UserFollowers
Source§fn clone(&self) -> UserFollowers
fn clone(&self) -> UserFollowers
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 UserFollowers
impl Debug for UserFollowers
Source§impl<'de> Deserialize<'de> for UserFollowers
impl<'de> Deserialize<'de> for UserFollowers
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 UserFollowers
impl RefUnwindSafe for UserFollowers
impl Send for UserFollowers
impl Sync for UserFollowers
impl Unpin for UserFollowers
impl UnsafeUnpin for UserFollowers
impl UnwindSafe for UserFollowers
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