pub struct IosConfig {
pub template: Option<PathBuf>,
pub frameworks: Option<Vec<String>>,
pub development_team: Option<String>,
pub minimum_system_version: String,
}
Expand description
General configuration for the iOS target.
Fields§
§template: Option<PathBuf>
A custom XcodeGen project.yml template to use.
frameworks: Option<Vec<String>>
A list of strings indicating any iOS frameworks that need to be bundled with the application.
Note that you need to recreate the iOS project for the changes to be applied.
development_team: Option<String>
The development team. This value is required for iOS development because code signing is enforced.
The APPLE_DEVELOPMENT_TEAM
environment variable can be set to overwrite it.
minimum_system_version: String
A version string indicating the minimum iOS version that the bundled application supports. Defaults to 13.0
.
Maps to the IPHONEOS_DEPLOYMENT_TARGET value.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IosConfig
impl<'de> Deserialize<'de> for IosConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for IosConfig
impl StructuralPartialEq for IosConfig
Auto Trait Implementations§
impl Freeze for IosConfig
impl RefUnwindSafe for IosConfig
impl Send for IosConfig
impl Sync for IosConfig
impl Unpin for IosConfig
impl UnwindSafe for IosConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.