pub struct DifficultyPoint {
pub time: f32,
pub speed_multiplier: f32,
}Expand description
TimingPoint that depends on a previous one.
Fields§
§time: f32§speed_multiplier: f32Trait Implementations§
Source§impl Clone for DifficultyPoint
impl Clone for DifficultyPoint
Source§fn clone(&self) -> DifficultyPoint
fn clone(&self) -> DifficultyPoint
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 DifficultyPoint
impl Debug for DifficultyPoint
Source§impl PartialEq for DifficultyPoint
impl PartialEq for DifficultyPoint
Source§impl PartialOrd for DifficultyPoint
impl PartialOrd for DifficultyPoint
impl Copy for DifficultyPoint
impl StructuralPartialEq for DifficultyPoint
Auto Trait Implementations§
impl Freeze for DifficultyPoint
impl RefUnwindSafe for DifficultyPoint
impl Send for DifficultyPoint
impl Sync for DifficultyPoint
impl Unpin for DifficultyPoint
impl UnwindSafe for DifficultyPoint
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