musicxml/elements/rfz.rs
1use alloc::string::String;
2use musicxml_internal::*;
3use musicxml_macros::*;
4
5/// The [Rfz] element represents a rinforzando rfz dynamic marking.
6///
7/// 
8#[derive(Debug, PartialEq, Eq, ElementDeserialize, ElementSerialize)]
9pub struct Rfz {
10 /// Element-specific attributes
11 pub attributes: (),
12 /// Element-specific content
13 pub content: (),
14}