pub struct GetSocialQqUserinfo200Response {Show 14 fields
pub qq: Option<String>,
pub nickname: Option<String>,
pub long_nick: Option<String>,
pub avatar_url: Option<String>,
pub age: Option<i32>,
pub sex: Option<String>,
pub qid: Option<String>,
pub qq_level: Option<i32>,
pub location: Option<String>,
pub email: Option<String>,
pub is_vip: Option<bool>,
pub vip_level: Option<i32>,
pub reg_time: Option<String>,
pub last_updated: Option<String>,
}Fields§
§qq: Option<String>QQ号
nickname: Option<String>用户昵称
long_nick: Option<String>个性签名
avatar_url: Option<String>头像URL
age: Option<i32>年龄
sex: Option<String>性别
qid: Option<String>QQ个性域名
qq_level: Option<i32>QQ等级
location: Option<String>地理位置(省市)
email: Option<String>QQ邮箱
is_vip: Option<bool>是否为VIP用户
vip_level: Option<i32>VIP等级
reg_time: Option<String>注册时间(ISO 8601格式)
last_updated: Option<String>最后更新时间(ISO 8601格式)
Implementations§
Trait Implementations§
Source§impl Clone for GetSocialQqUserinfo200Response
impl Clone for GetSocialQqUserinfo200Response
Source§fn clone(&self) -> GetSocialQqUserinfo200Response
fn clone(&self) -> GetSocialQqUserinfo200Response
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for GetSocialQqUserinfo200Response
impl Default for GetSocialQqUserinfo200Response
Source§fn default() -> GetSocialQqUserinfo200Response
fn default() -> GetSocialQqUserinfo200Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetSocialQqUserinfo200Response
impl<'de> Deserialize<'de> for GetSocialQqUserinfo200Response
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
Source§impl PartialEq for GetSocialQqUserinfo200Response
impl PartialEq for GetSocialQqUserinfo200Response
Source§fn eq(&self, other: &GetSocialQqUserinfo200Response) -> bool
fn eq(&self, other: &GetSocialQqUserinfo200Response) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetSocialQqUserinfo200Response
Auto Trait Implementations§
impl Freeze for GetSocialQqUserinfo200Response
impl RefUnwindSafe for GetSocialQqUserinfo200Response
impl Send for GetSocialQqUserinfo200Response
impl Sync for GetSocialQqUserinfo200Response
impl Unpin for GetSocialQqUserinfo200Response
impl UnwindSafe for GetSocialQqUserinfo200Response
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