pub struct ScoreEntry {
pub name: String,
pub score: u64,
pub date: u64,
pub metadata: HashMap<String, String>,
}Fields§
§name: String§score: u64§date: u64§metadata: HashMap<String, String>Implementations§
Trait Implementations§
Source§impl Clone for ScoreEntry
impl Clone for ScoreEntry
Source§fn clone(&self) -> ScoreEntry
fn clone(&self) -> ScoreEntry
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 moreAuto Trait Implementations§
impl Freeze for ScoreEntry
impl RefUnwindSafe for ScoreEntry
impl Send for ScoreEntry
impl Sync for ScoreEntry
impl Unpin for ScoreEntry
impl UnsafeUnpin for ScoreEntry
impl UnwindSafe for ScoreEntry
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