[][src]Struct creator_tools::types::AppClip

pub struct AppClip {
    pub request_ephemeral_user_notification: Option<bool>,
    pub request_location_confirmation: Option<bool>,
}

App Clip.

Fields

request_ephemeral_user_notification: Option<bool>

A Boolean value that indicates whether an App Clip can schedule or receive notifications for a limited amount of time.

Set the corresponding value to true to enable your App Clip to schedule or receive notifications for up to 8 hours after each launch. For more information, see Enabling Notifications in App Clips.

request_location_confirmation: Option<bool>

A Boolean value that indicates whether an App Clip can confirm the user’s location.

Set the value to true to allow your App Clip to confirm the user’s location. For more information, see Responding to Invocations.

Trait Implementations

impl Clone for AppClip[src]

impl Debug for AppClip[src]

impl Default for AppClip[src]

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

impl PartialEq<AppClip> for AppClip[src]

impl Serialize for AppClip[src]

impl StructuralPartialEq for AppClip[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.