1 2 3 4 5 6
pub enum MyUnionType { Language(LanguageType), String(StringType), } pub type LanguageType = String; pub type StringType = String;