Struct tugger_apple::AppleSdkSupportedTarget[][src]

pub struct AppleSdkSupportedTarget {
    pub archs: Vec<String>,
    pub default_deployment_target: String,
    pub default_variant: Option<String>,
    pub deployment_target_setting_name: Option<String>,
    pub minimum_deployment_target: String,
    pub platform_family_name: Option<String>,
    pub valid_deployment_targets: Vec<String>,
}

Represents a SupportedTargets value in a SDKSettings.json file.

Fields

archs: Vec<String>default_deployment_target: Stringdefault_variant: Option<String>deployment_target_setting_name: Option<String>minimum_deployment_target: Stringplatform_family_name: Option<String>valid_deployment_targets: Vec<String>

Trait Implementations

impl Clone for AppleSdkSupportedTarget[src]

impl Debug for AppleSdkSupportedTarget[src]

impl<'de> Deserialize<'de> for AppleSdkSupportedTarget[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.