pub struct Nameplate {
pub nid: u64,
pub name: String,
pub image: String,
pub image_small: String,
pub level: String,
pub condition: String,
}Expand description
勋章信息
Fields§
§nid: u64勋章id
name: String勋章名称
image: String勋章图标
image_small: String勋章图标(小)
level: String勋章等级
condition: String获取条件
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Nameplate
impl<'de> Deserialize<'de> for Nameplate
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 Nameplate
impl RefUnwindSafe for Nameplate
impl Send for Nameplate
impl Sync for Nameplate
impl Unpin for Nameplate
impl UnsafeUnpin for Nameplate
impl UnwindSafe for Nameplate
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