musicxml/elements/
beat_unit.rs

1use crate::datatypes::NoteTypeValue;
2use alloc::string::String;
3use musicxml_internal::*;
4use musicxml_macros::*;
5
6/// The [BeatUnit] element indicates the graphical note type to use in a metronome mark.
7#[derive(Debug, PartialEq, Eq, ElementDeserialize, ElementSerialize)]
8#[rename("beat-unit")]
9pub struct BeatUnit {
10  /// Element-specific attributes
11  pub attributes: (),
12  /// Element-specific content
13  pub content: NoteTypeValue,
14}