[][src]Struct creator_tools::types::Identification

pub struct Identification {
    pub bundle_identifier: String,
    pub app_bundle_identifier: Option<String>,
    pub companion_app_bundle_identifier: Option<String>,
}

Identification.

Fields

bundle_identifier: String

A unique identifier for a bundle.

A bundle ID uniquely identifies a single app throughout the system. The bundle ID string must contain only alphanumeric characters (A-Z, a-z, and 0-9), hyphens (-), and periods (.). The string should be in reverse-DNS format. Bundle IDs are case sensitive.

app_bundle_identifier: Option<String>

The bundle ID of the watchOS app.

This key is automatically included in your WatchKit extension’s information property list when you create a watchOS project from a template.

companion_app_bundle_identifier: Option<String>

The bundle ID of the watchOS app’s companion iOS app.

Xcode automatically includes this key in the WatchKit app’s information property list when you create a watchOS project from a template. The value should be the same as the iOS app’s CFBundleIdentifier.

Trait Implementations

impl Clone for Identification[src]

impl Debug for Identification[src]

impl Default for Identification[src]

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

impl PartialEq<Identification> for Identification[src]

impl Serialize for Identification[src]

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