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