[][src]Struct creator_tools::types::Naming

pub struct Naming {
    pub bundle_name: Option<String>,
    pub bundle_display_name: Option<String>,
    pub bundle_spoken_name: Option<String>,
}

Naming.

Fields

bundle_name: Option<String>

A user-visible short name for the bundle.

This name can contain up to 15 characters. The system may display it to users if CFBundleDisplayName isn't set.

bundle_display_name: Option<String>

The user-visible name for the bundle, used by Siri and visible on the iOS Home screen.

Use this key if you want a product name that's longer than CFBundleName.

bundle_spoken_name: Option<String>

A replacement for the app name in text-to-speech operations.

Trait Implementations

impl Clone for Naming[src]

impl Debug for Naming[src]

impl Default for Naming[src]

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

impl PartialEq<Naming> for Naming[src]

impl Serialize for Naming[src]

impl StructuralPartialEq for Naming[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<V, T> VZip<V> for T where
    V: MultiLane<T>,