musicxml/elements/
normal_dot.rs

1use alloc::string::String;
2use musicxml_internal::*;
3use musicxml_macros::*;
4
5/// The [NormalDot] element is used to specify dotted normal tuplet types.
6#[derive(Debug, PartialEq, Eq, ElementDeserialize, ElementSerialize)]
7#[rename("normal-dot")]
8pub struct NormalDot {
9  /// Element-specific attributes
10  pub attributes: (),
11  /// Element-specific content
12  pub content: (),
13}