muxml 0.1.3

A Rust library for serializing and deserializing MusicXML files to an intermediate representation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use core::result;
use thiserror::Error;
pub type Result<T> = result::Result<T, Error>;

#[derive(Error, Debug, PartialEq)]
pub enum Error {
    #[error("ItemNotFound {0}")]
    ItemNotFoundError(String),
    #[error("DuplicateIndex")]
    DuplicateIndexError,
}