pub type Label<'a> = Option<&'a str>;
enum Label<'a> { None, Some(&'a str), }
No value.
Some value of type T.
T