android-intent 0.2.1

Android intent utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Extra data to include with an intent
pub enum Extra {
    Text,
}

impl AsRef<str> for Extra {
    fn as_ref(&self) -> &str {
        match self {
            Self::Text => "android.intent.extra.TEXT",
        }
    }
}