pub struct BeatmapConstructor {Show 28 fields
pub approved: String,
pub approved_date: Option<String>,
pub last_update: String,
pub artist: String,
pub beatmap_id: String,
pub beatmapset_id: String,
pub bpm: String,
pub creator: String,
pub creator_id: String,
pub difficultyrating: String,
pub diff_size: String,
pub diff_overall: String,
pub diff_approach: String,
pub diff_drain: String,
pub hit_length: String,
pub source: String,
pub genre_id: String,
pub language_id: String,
pub title: String,
pub total_length: String,
pub version: String,
pub file_md5: String,
pub mode: String,
pub tags: String,
pub favourite_count: String,
pub playcount: String,
pub passcount: String,
pub max_combo: String,
}
Fields§
§approved: String
§approved_date: Option<String>
§last_update: String
§artist: String
§beatmap_id: String
§beatmapset_id: String
§bpm: String
§creator: String
§creator_id: String
§difficultyrating: String
§diff_size: String
§diff_overall: String
§diff_approach: String
§diff_drain: String
§hit_length: String
§source: String
§genre_id: String
§language_id: String
§title: String
§total_length: String
§version: String
§file_md5: String
§mode: String
§favourite_count: String
§playcount: String
§passcount: String
§max_combo: String
Trait Implementations§
Source§impl Debug for BeatmapConstructor
impl Debug for BeatmapConstructor
Source§impl<'de> Deserialize<'de> for BeatmapConstructor
impl<'de> Deserialize<'de> for BeatmapConstructor
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 BeatmapConstructor
impl RefUnwindSafe for BeatmapConstructor
impl Send for BeatmapConstructor
impl Sync for BeatmapConstructor
impl Unpin for BeatmapConstructor
impl UnwindSafe for BeatmapConstructor
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more