[][src]Struct google_firebasedynamiclinks1::DynamicLinkInfo

pub struct DynamicLinkInfo {
    pub navigation_info: Option<NavigationInfo>,
    pub analytics_info: Option<AnalyticsInfo>,
    pub ios_info: Option<IosInfo>,
    pub android_info: Option<AndroidInfo>,
    pub social_meta_tag_info: Option<SocialMetaTagInfo>,
    pub domain_uri_prefix: Option<String>,
    pub link: Option<String>,
    pub desktop_info: Option<DesktopInfo>,
    pub dynamic_link_domain: Option<String>,
}

Information about a Dynamic Link.

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

Fields

navigation_info: Option<NavigationInfo>

Information of navigation behavior of a Firebase Dynamic Links.

analytics_info: Option<AnalyticsInfo>

Parameters used for tracking. See all tracking parameters in the documentation.

ios_info: Option<IosInfo>

iOS related information. See iOS related parameters in the documentation.

android_info: Option<AndroidInfo>

Android related information. See Android related parameters in the documentation.

social_meta_tag_info: Option<SocialMetaTagInfo>

Parameters for social meta tag params. Used to set meta tag data for link previews on social sites.

domain_uri_prefix: Option<String>

E.g. https://maps.app.goo.gl, https://maps.page.link, https://g.co/maps More examples can be found in description of getNormalizedUriPrefix in j/c/g/firebase/dynamiclinks/uri/DdlDomain.java

Will fallback to dynamic_link_domain is this field is missing

link: Option<String>

The link your app will open, You can specify any URL your app can handle. This link must be a well-formatted URL, be properly URL-encoded, and use the HTTP or HTTPS scheme. See 'link' parameters in the documentation.

Required.

desktop_info: Option<DesktopInfo>

Desktop related information. See desktop related parameters in the documentation.

dynamic_link_domain: Option<String>

Dynamic Links domain that the project owns, e.g. abcd.app.goo.gl Learn more on how to set up Dynamic Link domain associated with your Firebase project.

Required if missing domain_uri_prefix.

Trait Implementations

impl Clone for DynamicLinkInfo[src]

impl Debug for DynamicLinkInfo[src]

impl Default for DynamicLinkInfo[src]

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

impl Part for DynamicLinkInfo[src]

impl Serialize for DynamicLinkInfo[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