Struct bms_rs::parse::notes::BpmChangeObj
source · pub struct BpmChangeObj {
pub time: ObjTime,
pub bpm: f64,
}
Expand description
An object to change the BPM of the score.
Fields§
§time: ObjTime
The time to begin the change of BPM.
bpm: f64
The BPM to be.
Trait Implementations§
source§impl Clone for BpmChangeObj
impl Clone for BpmChangeObj
source§fn clone(&self) -> BpmChangeObj
fn clone(&self) -> BpmChangeObj
Returns a copy 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 BpmChangeObj
impl Debug for BpmChangeObj
source§impl Ord for BpmChangeObj
impl Ord for BpmChangeObj
source§impl PartialEq for BpmChangeObj
impl PartialEq for BpmChangeObj
source§impl PartialOrd for BpmChangeObj
impl PartialOrd for BpmChangeObj
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for BpmChangeObj
impl Eq for BpmChangeObj
Auto Trait Implementations§
impl RefUnwindSafe for BpmChangeObj
impl Send for BpmChangeObj
impl Sync for BpmChangeObj
impl Unpin for BpmChangeObj
impl UnwindSafe for BpmChangeObj
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