An SMFWriter is used to write an SMF to a file. It can be either constructed empty and have tracks added, or created from an existing rimd::SMF. # Writing an existing SMF to a file ``` use rimd::{SMF,SMFWriter,SMFBuilder}; use std::path::Path; // Create smf let mut builder = SMFBuilder::new(); // add some events to builder let smf = builder.result(); let writer = SMFWriter::from_smf(smf); let re
source not stored for this graph (policy: none)
nothing calls this directly
no outgoing calls
no test coverage detected