pub type Target<'a> = Option<SuperName<'a>>;
Location to store the result of an operation
enum Target<'a> { None, Some(SuperName<'a>), }
No value.
Some value of type T.
T