Struct apple_bundle::info_plist::bundle_configuration::Identification [−][src]
pub struct Identification {
pub bundle_identifier: String,
pub app_bundle_identifier: Option<String>,
pub companion_app_bundle_identifier: Option<String>,
}Expand description
Identification
Fields
bundle_identifier: StringA unique identifier for a bundle.
A bundle ID uniquely identifies a single app throughout the system. The bundle ID string must contain only alphanumeric characters (A-Z, a-z, and 0-9), hyphens (-), and periods (.). The string should be in reverse-DNS format. Bundle IDs are case sensitive.
Availability
- iOS 2.0+
- macOS 10.0+
- tvOS 9.0+
- watchOS 2.0+
Framework
Core Foundation
app_bundle_identifier: Option<String>The bundle ID of the watchOS app.
This key is automatically included in your WatchKit extension’s information property list when you create a watchOS project from a template.
Availability
- watchOS 2.0+
Framework
- WatchKit
companion_app_bundle_identifier: Option<String>The bundle ID of the watchOS app’s companion iOS app.
Xcode automatically includes this key in the WatchKit app’s information property list when you create a watchOS project from a template. The value should be the same as the iOS app’s CFBundleIdentifier.
Availability
- watchOS 2.0+
Framework
- WatchKit
Trait Implementations
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for Identificationimpl Send for Identificationimpl Sync for Identificationimpl Unpin for Identificationimpl UnwindSafe for IdentificationBlanket Implementations
Mutably borrows from an owned value. Read more