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 [Cue] element indicates the presence of a cue note.
///
/// ![Cue](https://hedgetechllc.github.io/musicxml/musicxml/elements/cue.png)
///
/// In MusicXML, a cue note is a silent note with no playback. Normal notes that play can be specified as cue size using the [Type][super::Type] element.
/// A cue note that is specified as full size using the [Type][super::Type] element will still remain silent.
#[derive(Debug, PartialEq, Eq, ElementDeserialize, ElementSerialize)]
pub struct Cue {
  /// Element-specific attributes
  pub attributes: (),
  /// Element-specific content
  pub content: (),
}