pub struct BeatmapScores {
pub hash: Option<String>,
pub scores: Vec<Replay>,
}Expand description
The scores for a single beatmap.
Fields§
§hash: Option<String>The beatmap hash. Should be redundant with the individual replay hashes.
scores: Vec<Replay>All the scored replays for this beatmap.
Trait Implementations§
Source§impl Clone for BeatmapScores
impl Clone for BeatmapScores
Source§fn clone(&self) -> BeatmapScores
fn clone(&self) -> BeatmapScores
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 BeatmapScores
impl Debug for BeatmapScores
Source§impl PartialEq for BeatmapScores
impl PartialEq for BeatmapScores
impl StructuralPartialEq for BeatmapScores
Auto Trait Implementations§
impl Freeze for BeatmapScores
impl RefUnwindSafe for BeatmapScores
impl Send for BeatmapScores
impl Sync for BeatmapScores
impl Unpin for BeatmapScores
impl UnwindSafe for BeatmapScores
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