dot-multisample 0.1.0

Bindings to the .multisample manifest file format
Documentation

dot-multisample

Bindings for the .multisample manifest file format

Usage

The provided bindings have been created for use with quick-xml as (at time of writing) it has the best Serde support for XML documents.

See the "load" example for a more practical demonstration, but here is a short snippet:

let path: &std::path::Path = "path/to/Instrument.multisample".as_ref();
let manifest = std::fs::read_to_string(path.join("multisample.xml")).unwrap();

let config: Multisample = quick_xml::de::from_str(&manifest).unwrap();

println!("{} by {}", config.name(), config.creator());