[][src]Struct creator_tools::types::ExtensionsAndServices

pub struct ExtensionsAndServices {
    pub extension: Option<Extension>,
    pub services: Option<Vec<Service>>,
    pub extension_delegate_class_name: Option<String>,
    pub application_shortcut_widget: Option<String>,
}

Extensions and Services.

Fields

extension: Option<Extension>

The properties of an app extension.

services: Option<Vec<Service>>

The services provided by an app.

extension_delegate_class_name: Option<String>

The name of your watchOS app’s extension delegate.

This key provides the name of a class that adopts the WKExtensionDelegate protocol. Xcode automatically includes this key in the WatchKit extension’s information property list when you create a watchOS project from a template. You only modify this value when you rename or replace the extension delegate.

application_shortcut_widget: Option<String>

The bundle ID of the widget that's available as a Home screen quick action in apps that have more than one widget.

Trait Implementations

impl Clone for ExtensionsAndServices[src]

impl Debug for ExtensionsAndServices[src]

impl Default for ExtensionsAndServices[src]

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

impl PartialEq<ExtensionsAndServices> for ExtensionsAndServices[src]

impl Serialize for ExtensionsAndServices[src]

impl StructuralPartialEq for ExtensionsAndServices[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>,