pub struct BeatmapStatsOffset {
pub ar: i32,
pub od: i32,
pub cs: i32,
pub hp: i32,
pub object_count: i32,
pub total_length: i32,
pub drain_time: i32,
pub star_rating: i32,
pub slider_count: i32,
}Fields§
§ar: i32§od: i32§cs: i32§hp: i32§object_count: i32§total_length: i32§drain_time: i32§star_rating: i32§slider_count: i32Auto Trait Implementations§
impl Freeze for BeatmapStatsOffset
impl RefUnwindSafe for BeatmapStatsOffset
impl Send for BeatmapStatsOffset
impl Sync for BeatmapStatsOffset
impl Unpin for BeatmapStatsOffset
impl UnwindSafe for BeatmapStatsOffset
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