1/// The RotationDirection 2#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)] 3pub enum RotationDirection { 4 /// Forwards. 5 Prograde, 6 /// Backwardss. 7 Retrograde, 8 /// WTF 9 Undefined, 10}