pub struct UserProfile {Show 16 fields
pub id: u64,
pub name: String,
pub system_owns: u32,
pub user_owns: u32,
pub user_bloods: u32,
pub system_bloods: u32,
pub rank: Option<String>,
pub rank_id: u32,
pub ranking: Option<u32>,
pub points: u32,
pub country_name: Option<String>,
pub country_code: Option<String>,
pub joined_date: Option<String>,
pub server: Option<String>,
pub is_vip: bool,
pub is_dedicated_vip: bool,
}Fields§
§id: u64§name: String§system_owns: u32§user_owns: u32§user_bloods: u32§system_bloods: u32§rank: Option<String>§rank_id: u32§ranking: Option<u32>§points: u32§country_name: Option<String>§country_code: Option<String>§joined_date: Option<String>§server: Option<String>§is_vip: bool§is_dedicated_vip: boolTrait Implementations§
Source§impl Debug for UserProfile
impl Debug for UserProfile
Source§impl<'de> Deserialize<'de> for UserProfile
impl<'de> Deserialize<'de> for UserProfile
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 UserProfile
impl RefUnwindSafe for UserProfile
impl Send for UserProfile
impl Sync for UserProfile
impl Unpin for UserProfile
impl UnsafeUnpin for UserProfile
impl UnwindSafe for UserProfile
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