pub struct UserMedalWall {
pub list: Vec<UserMedalWallItem>,
pub count: u32,
pub close_space_medal: u32,
pub only_show_wearing: u32,
pub name: String,
pub icon: String,
pub uid: Mid,
pub level: u32,
}Expand description
/xlive/web-ucenter/user/MedalWall 返回的粉丝勋章墙。
Fields§
§list: Vec<UserMedalWallItem>用户勋章墙上可见的勋章条目。
count: u32可见勋章条目数量。
close_space_medal: u32该用户是否关闭空间勋章墙。
only_show_wearing: u32该用户是否只展示正在佩戴的勋章。
name: String勋章墙所有者显示名称。
icon: String勋章墙所有者头像 URL。
uid: Mid勋章墙所有者 member ID。
level: u32勋章墙所有者等级。
Trait Implementations§
Source§impl Clone for UserMedalWall
impl Clone for UserMedalWall
Source§fn clone(&self) -> UserMedalWall
fn clone(&self) -> UserMedalWall
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 UserMedalWall
impl Debug for UserMedalWall
Source§impl<'de> Deserialize<'de> for UserMedalWall
impl<'de> Deserialize<'de> for UserMedalWall
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 UserMedalWall
impl RefUnwindSafe for UserMedalWall
impl Send for UserMedalWall
impl Sync for UserMedalWall
impl Unpin for UserMedalWall
impl UnsafeUnpin for UserMedalWall
impl UnwindSafe for UserMedalWall
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