1/// Extra data to include with an intent 2pub enum Extra { 3 Text, 4} 5 6impl AsRef<str> for Extra { 7 fn as_ref(&self) -> &str { 8 match self { 9 Self::Text => "android.intent.extra.TEXT", 10 } 11 } 12}