pub struct Song {Show 18 fields
pub version: Version,
pub directory: String,
pub transpose: u8,
pub tempo: f32,
pub quantize: u8,
pub name: String,
pub key: u8,
pub song: SongSteps,
pub phrases: Vec<Phrase>,
pub chains: Vec<Chain>,
pub instruments: Vec<Instrument>,
pub tables: Vec<Table>,
pub grooves: Vec<Groove>,
pub scales: Vec<Scale>,
pub mixer_settings: MixerSettings,
pub effects_settings: EffectsSettings,
pub midi_settings: MidiSettings,
pub midi_mappings: Vec<MidiMapping>,
}
14
15
16
17
18
19
20
21
22
23
fn run() -> Result<(), Box<dyn Error>> {
let args: Vec<String> = env::args().collect();
let mut f = File::open(&args[1])?;
let song = Song::read(&mut f)?;
dbg!(song);
Ok(())
}
Formats the value using the given formatter.
Read more
This method tests for self and other values to be equal, and is used
by ==.
This method tests for !=. The default implementation is almost always
sufficient, and should not be overridden without very good reason.
Immutably borrows from an owned value.
Read more
Mutably borrows from an owned value.
Read more
Returns the argument unchanged.
Calls U::from(self).
That is, this conversion is whatever the implementation of
From<T> for U chooses to do.
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.