musicxml/elements/
ensemble.rs

1use crate::datatypes::PositiveIntegerOrEmpty;
2use alloc::string::String;
3use musicxml_internal::*;
4use musicxml_macros::*;
5
6/// The [Ensemble] element is present if performance is intended by an ensemble such as an orchestral section.
7///
8/// The text of the [Ensemble] element contains the size of the section, or is empty if the ensemble size is not specified.
9#[derive(Debug, PartialEq, Eq, ElementDeserialize, ElementSerialize)]
10pub struct Ensemble {
11  /// Element-specific attributes
12  pub attributes: (),
13  /// Element-specific content
14  pub content: PositiveIntegerOrEmpty,
15}