pub struct DynamicLinkInfo {
pub analytics_info: Option<AnalyticsInfo>,
pub android_info: Option<AndroidInfo>,
pub desktop_info: Option<DesktopInfo>,
pub domain_uri_prefix: Option<String>,
pub dynamic_link_domain: Option<String>,
pub ios_info: Option<IosInfo>,
pub link: Option<String>,
pub navigation_info: Option<NavigationInfo>,
pub social_meta_tag_info: Option<SocialMetaTagInfo>,
}
Expand description
Information about a Dynamic Link.
This type is not used in any activity, and only used as part of another schema.
Fields§
§analytics_info: Option<AnalyticsInfo>
Parameters used for tracking. See all tracking parameters in the documentation.
android_info: Option<AndroidInfo>
Android related information. See Android related parameters in the documentation.
desktop_info: Option<DesktopInfo>
Desktop related information. See desktop related parameters in the documentation.
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
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.
ios_info: Option<IosInfo>
iOS related information. See iOS related parameters in the documentation.
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.
Information of navigation behavior of a Firebase Dynamic Links.
Parameters for social meta tag params. Used to set meta tag data for link previews on social sites.
Trait Implementations§
Source§impl Clone for DynamicLinkInfo
impl Clone for DynamicLinkInfo
Source§fn clone(&self) -> DynamicLinkInfo
fn clone(&self) -> DynamicLinkInfo
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for DynamicLinkInfo
impl Debug for DynamicLinkInfo
Source§impl Default for DynamicLinkInfo
impl Default for DynamicLinkInfo
Source§fn default() -> DynamicLinkInfo
fn default() -> DynamicLinkInfo
Source§impl<'de> Deserialize<'de> for DynamicLinkInfo
impl<'de> Deserialize<'de> for DynamicLinkInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for DynamicLinkInfo
impl Serialize for DynamicLinkInfo
impl Part for DynamicLinkInfo
Auto Trait Implementations§
impl Freeze for DynamicLinkInfo
impl RefUnwindSafe for DynamicLinkInfo
impl Send for DynamicLinkInfo
impl Sync for DynamicLinkInfo
impl Unpin for DynamicLinkInfo
impl UnwindSafe for DynamicLinkInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more