1
2
3
4
5
6
7
8
9
10
11
12
use musicxml_internal::*;
use musicxml_macros::*;

/// The [VirtualLibrary] element indicates the virtual instrument library name.
#[derive(Debug, PartialEq, Eq, ElementDeserialize, ElementSerialize)]
#[rename("virtual-library")]
pub struct VirtualLibrary {
  /// Element-specific attributes
  pub attributes: (),
  /// Element-specific content
  pub content: String,
}