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
use crate::datatypes::PositiveIntegerOrEmpty;
use alloc::string::String;
use musicxml_internal::*;
use musicxml_macros::*;

/// The [Ensemble] element is present if performance is intended by an ensemble such as an orchestral section.
///
/// The text of the [Ensemble] element contains the size of the section, or is empty if the ensemble size is not specified.
#[derive(Debug, PartialEq, Eq, ElementDeserialize, ElementSerialize)]
pub struct Ensemble {
  /// Element-specific attributes
  pub attributes: (),
  /// Element-specific content
  pub content: PositiveIntegerOrEmpty,
}