use crate::datatypes::Tenths;
use alloc::string::String;
use musicxml_internal::*;
use musicxml_macros::*;
/// The [PageWidth] element specifies the page width in tenths.
#[derive(Debug, PartialEq, Eq, ElementDeserialize, ElementSerialize)]
#[rename("page-width")]
pub struct PageWidth {
/// Element-specific attributes
pub attributes: (),
/// Element-specific content
pub content: Tenths,
}