musicxml/elements/
group_link.rs

1use alloc::string::String;
2use musicxml_internal::*;
3use musicxml_macros::*;
4
5/// Multiple [PartLink][super::PartLink] elements can reference different types of linked documents, such as parts and condensed score.
6///
7/// The optional [GroupLink] elements identify the groups used in the linked document. The content of a [GroupLink] element should match the content
8/// of a [Group][super::Group] element in the linked document.
9#[derive(Debug, PartialEq, Eq, ElementDeserialize, ElementSerialize)]
10#[rename("group-link")]
11pub struct GroupLink {
12  /// Element-specific attributes
13  pub attributes: (),
14  /// Element-specific content
15  pub content: String,
16}