musicxml/datatypes/
font_style.rs

1use alloc::string::String;
2use musicxml_internal::{DatatypeDeserializer, DatatypeSerializer};
3use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
4
5/// Represents a simplified version of the [CSS font-style property](https://www.w3.org/TR/2018/REC-css-fonts-3-20180920/#font-prop-desc).
6#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
7pub enum FontStyle {
8  /// Normal text.
9  Normal,
10  /// Italicized text.
11  Italic,
12}