Skip to main content

UserSpaceInfo

Struct UserSpaceInfo 

Source
pub struct UserSpaceInfo {
Show 39 fields pub mid: u64, pub name: String, pub sex: String, pub face: String, pub face_nft: u8, pub face_nft_type: Option<u8>, pub sign: String, pub rank: u32, pub level: u8, pub jointime: u64, pub moral: u64, pub silence: u8, pub coins: f64, pub fans_badge: bool, pub fans_medal: Option<FansMedal>, pub official: Official, pub vip: Vip, pub pendant: Pendant, pub nameplate: Nameplate, pub user_honour_info: UserHonourInfo, pub is_followed: bool, pub top_photo: String, pub theme: Value, pub sys_notice: SysNotice, pub live_room: LiveRoom, pub birthday: String, pub school: School, pub profession: Option<Profession>, pub tags: Option<Vec<String>>, pub series: Series, pub is_senior_member: u8, pub mcn_info: Option<Value>, pub gaia_res_type: Option<u8>, pub gaia_data: Option<Value>, pub is_risk: bool, pub elec: Elec, pub contract: Contract, pub certificate_show: Option<bool>, pub name_render: Option<Value>,
}
Expand description

用户空间详细信息响应结构体

Fields§

§mid: u64

用户mid

§name: String

昵称

§sex: String

性别 男/女/保密

§face: String

头像链接

§face_nft: u8

是否为NFT头像 0:不是NFT头像 1:是NFT头像

§face_nft_type: Option<u8>

NFT头像类型

§sign: String

签名

§rank: u32

用户权限等级

§level: u8

当前等级 0-6级

§jointime: u64

注册时间 此接口返回恒为0

§moral: u64

节操值 此接口返回恒为0

§silence: u8

封禁状态 0:正常 1:被封

§coins: f64

硬币数 需要登录(Cookie) 只能查看自己的 默认为0

§fans_badge: bool

是否具有粉丝勋章

§fans_medal: Option<FansMedal>

粉丝勋章信息

§official: Official

认证信息

§vip: Vip

会员信息

§pendant: Pendant

头像框信息

§nameplate: Nameplate

勋章信息

§user_honour_info: UserHonourInfo

用户荣誉信息

§is_followed: bool

是否关注此用户 需要登录(Cookie) 未登录恒为false

§top_photo: String

主页头图链接

§theme: Value

主题信息

§sys_notice: SysNotice

系统通知

§live_room: LiveRoom

直播间信息

§birthday: String

生日 MM-DD 如设置隐私为空

§school: School

学校

§profession: Option<Profession>

专业资质信息

§tags: Option<Vec<String>>

个人标签

§series: Series

系列信息

§is_senior_member: u8

是否为硬核会员 0:否 1:是

§mcn_info: Option<Value>

MCN信息

§gaia_res_type: Option<u8>

Gaia资源类型

§gaia_data: Option<Value>

Gaia数据

§is_risk: bool

是否存在风险

§elec: Elec

充电信息

§contract: Contract

是否显示老粉计划

§certificate_show: Option<bool>

证书显示

§name_render: Option<Value>

昵称渲染信息

Trait Implementations§

Source§

impl Clone for UserSpaceInfo

Source§

fn clone(&self) -> UserSpaceInfo

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for UserSpaceInfo

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for UserSpaceInfo

Source§

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 Serialize for UserSpaceInfo

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

Source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>

Source§

fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,