Struct crossbundle_lib::types::apple_config::AppleConfig
source · [−]pub struct AppleConfig {
pub info_plist: Option<InfoPlist>,
pub info_plist_path: Option<PathBuf>,
pub res: Option<PathBuf>,
pub assets: Option<PathBuf>,
pub debug_build_targets: Vec<IosTarget>,
pub release_build_targets: Vec<IosTarget>,
}Expand description
Full Apple configuration.
Fields
info_plist: Option<InfoPlist>Info.plist configuration.
info_plist_path: Option<PathBuf>Path to Info.plist file.
Important: If this field specified - info_plist property will be ignored.
res: Option<PathBuf>Apple resources directory path relatively to project path.
assets: Option<PathBuf>Custom Apple assets directory path relatively to project path.
Important: This property has higher priority than global property.
debug_build_targets: Vec<IosTarget>Apple debug build targets.
release_build_targets: Vec<IosTarget>Apple release build targets.
Trait Implementations
sourceimpl Clone for AppleConfig
impl Clone for AppleConfig
sourcefn clone(&self) -> AppleConfig
fn clone(&self) -> AppleConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for AppleConfig
impl Debug for AppleConfig
sourceimpl Default for AppleConfig
impl Default for AppleConfig
sourcefn default() -> AppleConfig
fn default() -> AppleConfig
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for AppleConfig
impl<'de> Deserialize<'de> for AppleConfig
sourcefn 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
sourceimpl Serialize for AppleConfig
impl Serialize for AppleConfig
Auto Trait Implementations
impl RefUnwindSafe for AppleConfig
impl Send for AppleConfig
impl Sync for AppleConfig
impl Unpin for AppleConfig
impl UnwindSafe for AppleConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more