[][src]Struct google_firebasedynamiclinks1::AndroidInfo

pub struct AndroidInfo {
    pub android_fallback_link: Option<String>,
    pub android_package_name: Option<String>,
    pub android_link: Option<String>,
    pub android_min_package_version_code: Option<String>,
}

Android related attributes to the Dynamic Link.

This type is not used in any activity, and only used as part of another schema.

Fields

android_fallback_link: Option<String>

Link to open on Android if the app is not installed.

android_package_name: Option<String>

Android package name of the app.

android_link: Option<String>

If specified, this overrides the ‘link’ parameter on Android.

android_min_package_version_code: Option<String>

Minimum version code for the Android app. If the installed app’s version code is lower, then the user is taken to the Play Store.

Trait Implementations

impl Clone for AndroidInfo[src]

impl Debug for AndroidInfo[src]

impl Default for AndroidInfo[src]

impl<'de> Deserialize<'de> for AndroidInfo[src]

impl Part for AndroidInfo[src]

impl Serialize for AndroidInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any