pub struct UserFollowers {
pub list: Vec<UserFollower>,
pub offset: String,
pub re_version: u32,
pub total: u64,
}Expand description
/x/relation/fans 返回的粉丝列表载荷。
Fields§
§list: Vec<UserFollower>关注指定用户的用户列表。
offset: String传给下一次请求的分页 offset。
re_version: u32Bilibili 关系列表 schema 版本。
total: u64粉丝总数。
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