Struct gapi_grpc::google::ads::googleads::v7::common::FinalAppUrl[][src]

pub struct FinalAppUrl {
    pub os_type: i32,
    pub url: String,
}

A URL for deep linking into an app for the given operating system.

Fields

os_type: i32

The operating system targeted by this URL. Required.

url: String

The app deep link URL. Deep links specify a location in an app that corresponds to the content you’d like to show, and should be of the form {scheme}://{host_path} The scheme identifies which app to open. For your app, you can use a custom scheme that starts with the app’s name. The host and path specify the unique location in the app where your content exists. Example: “exampleapp://productid_1234”. Required.

Implementations

impl FinalAppUrl[src]

pub fn os_type(&self) -> AppUrlOperatingSystemType[src]

Returns the enum value of os_type, or the default if the field is set to an invalid enum value.

pub fn set_os_type(&mut self, value: AppUrlOperatingSystemType)[src]

Sets os_type to the provided enum value.

Trait Implementations

impl Clone for FinalAppUrl[src]

impl Debug for FinalAppUrl[src]

impl Default for FinalAppUrl[src]

impl Message for FinalAppUrl[src]

impl PartialEq<FinalAppUrl> for FinalAppUrl[src]

impl StructuralPartialEq for FinalAppUrl[src]

Auto Trait Implementations

impl RefUnwindSafe for FinalAppUrl

impl Send for FinalAppUrl

impl Sync for FinalAppUrl

impl Unpin for FinalAppUrl

impl UnwindSafe for FinalAppUrl

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]