Struct google_firebasedynamiclinks1::api::IosInfo[][src]

pub struct IosInfo {
    pub ios_app_store_id: Option<String>,
    pub ios_bundle_id: Option<String>,
    pub ios_custom_scheme: Option<String>,
    pub ios_fallback_link: Option<String>,
    pub ios_ipad_bundle_id: Option<String>,
    pub ios_ipad_fallback_link: Option<String>,
    pub ios_minimum_version: Option<String>,
}

iOS related attributes to the Dynamic Link..

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

Fields

ios_app_store_id: Option<String>

iOS App Store ID.

ios_bundle_id: Option<String>

iOS bundle ID of the app.

ios_custom_scheme: Option<String>

Custom (destination) scheme to use for iOS. By default, we’ll use the bundle ID as the custom scheme. Developer can override this behavior using this param.

ios_fallback_link: Option<String>

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

ios_ipad_bundle_id: Option<String>

iPad bundle ID of the app.

ios_ipad_fallback_link: Option<String>

If specified, this overrides the ios_fallback_link value on iPads.

ios_minimum_version: Option<String>

iOS minimum version.

Trait Implementations

impl Clone for IosInfo[src]

impl Debug for IosInfo[src]

impl Default for IosInfo[src]

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

impl Part for IosInfo[src]

impl Serialize for IosInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for IosInfo[src]

impl Send for IosInfo[src]

impl Sync for IosInfo[src]

impl Unpin for IosInfo[src]

impl UnwindSafe for IosInfo[src]

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> Instrument 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.