pub struct LeaderBoardEntry {
pub user_id: LegacyId,
pub score: i32,
pub rank: i32,
pub name: String,
pub figure: String,
pub gender: String,
}
Fields§
§user_id: LegacyId
§score: i32
§rank: i32
§name: String
§figure: String
§gender: String
Trait Implementations§
Source§impl Clone for LeaderBoardEntry
impl Clone for LeaderBoardEntry
Source§fn clone(&self) -> LeaderBoardEntry
fn clone(&self) -> LeaderBoardEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 LeaderBoardEntry
impl Debug for LeaderBoardEntry
Source§impl Default for LeaderBoardEntry
impl Default for LeaderBoardEntry
Source§fn default() -> LeaderBoardEntry
fn default() -> LeaderBoardEntry
Returns the “default value” for a type. Read more
Source§impl PacketVariable for LeaderBoardEntry
impl PacketVariable for LeaderBoardEntry
Source§impl PartialEq for LeaderBoardEntry
impl PartialEq for LeaderBoardEntry
impl StructuralPartialEq 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