pub struct MasterTrack {
pub name: String,
pub comment: String,
pub resolution: i64,
pub pre_measure: i64,
pub time_signatures: Vec<TimeSignature>,
pub tempos: Vec<Tempo>,
}Fields§
§name: String§comment: String§resolution: i64§pre_measure: i64§time_signatures: Vec<TimeSignature>§tempos: Vec<Tempo>Trait Implementations§
Source§impl Clone for MasterTrack
impl Clone for MasterTrack
Source§fn clone(&self) -> MasterTrack
fn clone(&self) -> MasterTrack
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 MasterTrack
impl Debug for MasterTrack
Source§impl<'de> Deserialize<'de> for MasterTrack
impl<'de> Deserialize<'de> for MasterTrack
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
Source§impl PartialEq for MasterTrack
impl PartialEq for MasterTrack
impl StructuralPartialEq for MasterTrack
Auto Trait Implementations§
impl Freeze for MasterTrack
impl RefUnwindSafe for MasterTrack
impl Send for MasterTrack
impl Sync for MasterTrack
impl Unpin for MasterTrack
impl UnwindSafe for MasterTrack
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