pub struct Measure {
pub beats: Vec<Beat>,
pub time_signature: Option<TimeSignature>,
pub key_signature: Option<KeySignature>,
pub tempo: Option<u16>,
}Expand description
Measure
Fields§
§beats: Vec<Beat>§time_signature: Option<TimeSignature>§key_signature: Option<KeySignature>§tempo: Option<u16>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Measure
impl RefUnwindSafe for Measure
impl Send for Measure
impl Sync for Measure
impl Unpin for Measure
impl UnwindSafe for Measure
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