pub struct UserFollowTag {
pub id: i64,
pub name: String,
pub count: i64,
pub tip: Option<String>,
}Expand description
Follow-group entry returned by /x/relation/tags.
Fields§
§id: i64Follow group ID. Bilibili uses negative IDs for built-in groups.
name: StringFollow group display name.
count: i64Number of users in the group.
tip: Option<String>Optional UI hint returned by Bilibili.
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.