1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
use alloc::string::String;
use musicxml_internal::{DatatypeDeserializer, DatatypeSerializer};
use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// Represents the direction in which an arrow points, using Unicode arrow terminology.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum ArrowDirection {
/// 
Down,
/// 
Left,
/// 
#[rename("left right")]
LeftRight,
/// 
Northeast,
/// 
#[rename("northeast southwest")]
NortheastSouthwest,
/// 
Northwest,
/// 
#[rename("northwest southeast")]
NorthwestSoutheast,
/// Another direction besides one of those listed.
Other,
/// 
Right,
/// 
Southeast,
/// 
Southwest,
/// 
Up,
/// 
#[rename("up down")]
UpDown,
}