1#[derive(Debug, PartialEq, Clone)] 2/// ## Units of Morse Code. 3pub enum MorseUnit { 4 Dot, 5 Line, 6 Whitespace, // End Of Word 7}