[−][src]Struct creator_tools::types::Launch
Launch.
Fields
principal_class: Option<String>The name of the bundle’s main executable class.
The system uses the class identified by this key to set the principalClass property of a bundle when it’s loaded.
Xcode sets the default value of this key to NSApplication for macOS apps, and to UIApplication for iOS and tvOS apps. For other types of bundles, you must set this key in The Info.plist File.
complication_principal_class: Option<Vec<String>>The name of the class that implements the complication data source protocol.
Xcode automatically includes this key in the information property list when you modify the WatchKit extension’s data source (General > Complication Configuration > Data Source class).
bundle_executable: Option<String>The name of the bundle’s executable file.
For an app, this key is the executable. For a loadable bundle, it's the binary that's loaded dynamically by the bundle. For a framework, it's the shared library framework and must have the same name as the framework but without the .framework extension.
macOS uses this key to locate the bundle’s executable or shared library in cases where the user renames the app or bundle directory.
environment: Option<Vec<String>>Environment variables to set before launching the app.
application_shortcut_items: Option<Vec<ApplicationShortcutItem>>Application shortcut items.
Trait Implementations
impl Clone for Launch[src]
impl Debug for Launch[src]
impl Default for Launch[src]
impl<'de> Deserialize<'de> for Launch[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl PartialEq<Launch> for Launch[src]
impl Serialize for Launch[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralPartialEq for Launch[src]
Auto Trait Implementations
impl RefUnwindSafe for Launch[src]
impl Send for Launch[src]
impl Sync for Launch[src]
impl Unpin for Launch[src]
impl UnwindSafe for Launch[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,