use alloc::string::String;
use musicxml_internal::{DatatypeDeserializer, DatatypeSerializer};
use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// Specifies if there is a jog up or down (or both), an arrow, or nothing at the start or end of a bracket.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum LineEnd {
/// 
Up,
/// 
Down,
/// 
Both,
/// 
Arrow,
/// 
None,
}