pub struct LeaderboardEntry {
pub experience: u64,
pub permissions: u8,
pub username: String,
}Expand description
Represents a single player entry from a LeaderboardPage.
Fields§
§experience: u64§permissions: u8§username: StringTrait Implementations§
Source§impl Debug for LeaderboardEntry
impl Debug for LeaderboardEntry
Source§impl<'de> Deserialize<'de> for LeaderboardEntry
impl<'de> Deserialize<'de> for LeaderboardEntry
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 Display for LeaderboardEntry
impl Display for LeaderboardEntry
Auto Trait Implementations§
impl Freeze for LeaderboardEntry
impl RefUnwindSafe for LeaderboardEntry
impl Send for LeaderboardEntry
impl Sync for LeaderboardEntry
impl Unpin for LeaderboardEntry
impl UnwindSafe for LeaderboardEntry
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