pub struct UserFollowTag {
pub id: i64,
pub name: String,
pub count: i64,
pub tip: Option<String>,
}Expand description
/x/relation/tags 返回的关注分组条目。
Fields§
§id: i64关注分组 ID。Bilibili 对内置分组使用负数 ID。
name: String关注分组显示名称。
count: i64分组中的用户数量。
tip: Option<String>Bilibili 返回的可选 UI 提示。
Trait Implementations§
Source§impl Clone for UserFollowTag
impl Clone for UserFollowTag
Source§fn clone(&self) -> UserFollowTag
fn clone(&self) -> UserFollowTag
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 UserFollowTag
impl Debug for UserFollowTag
Source§impl<'de> Deserialize<'de> for UserFollowTag
impl<'de> Deserialize<'de> for UserFollowTag
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
impl Eq for UserFollowTag
Source§impl PartialEq for UserFollowTag
impl PartialEq for UserFollowTag
Source§fn eq(&self, other: &UserFollowTag) -> bool
fn eq(&self, other: &UserFollowTag) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UserFollowTag
impl Serialize for UserFollowTag
impl StructuralPartialEq for UserFollowTag
Auto Trait Implementations§
impl Freeze for UserFollowTag
impl RefUnwindSafe for UserFollowTag
impl Send for UserFollowTag
impl Sync for UserFollowTag
impl Unpin for UserFollowTag
impl UnsafeUnpin for UserFollowTag
impl UnwindSafe for UserFollowTag
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