musicxml 1.1.2

MusicXML parsing, manipulation, and export library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use alloc::string::String;
use musicxml_internal::*;
use musicxml_macros::*;

/// The [MetronomeRelation] element describes the relationship symbol that goes between the two sets of [MetronomeNote][super::MetronomeNote] elements.
///
/// ![MetronomeRelation](https://hedgetechllc.github.io/musicxml/musicxml/elements/metronome-relation.png)
///
/// The currently allowed value is "equals", but this may expand in future versions. If the element is empty, the equals value is used.
#[derive(Debug, PartialEq, Eq, ElementDeserialize, ElementSerialize)]
#[rename("metronome-relation")]
pub struct MetronomeRelation {
  /// Element-specific attributes
  pub attributes: (),
  /// Element-specific content
  pub content: String,
}