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: &Path = "path/to/Instrument.multisample".as_ref;
let manifest = read_to_string.unwrap;
let config: Multisample = from_str.unwrap;
println!;