pub struct Level {
pub attributes: LevelAttributes,
pub content: String,
}Expand description
The Level element is used to specify editorial information for different MusicXML elements.
The content contains identifying and/or descriptive text about the editorial status of the parent element.
Fields§
§attributes: LevelAttributesElement-specific attributes
content: StringElement-specific content
Trait Implementations§
Source§impl ElementDeserializer for Level
impl ElementDeserializer for Level
fn deserialize(element: &XmlElement) -> Result<Level, String>
Source§impl ElementSerializer for Level
impl ElementSerializer for Level
fn serialize(element: &Level) -> XmlElement
impl Eq for Level
impl StructuralPartialEq for Level
Auto Trait Implementations§
impl Freeze for Level
impl RefUnwindSafe for Level
impl Send for Level
impl Sync for Level
impl Unpin for Level
impl UnwindSafe for Level
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more