pub enum ApplePlatform {
IOS,
Simulator,
MacOS,
MacCatalyst,
TvOS,
WatchOS,
WatchOSSimulator,
CarPlayOS,
CarPlayOSSimulator,
}
Expand description
Currently supported platforms for genereting Swift Packages.
Variants§
IOS
aarch64-apple-ios
Simulator
x86_64-apple-ios
aarch64-apple-ios-sim
iOS simulator for debugging in XCode’s simulator.
MacOS
x86_64-apple-darwin
MacCatalyst
no official Rust target for this platform
TvOS
aarch64-apple-tvos
x86_64-apple-tvos
WatchOS
no official Rust target for this platform
WatchOSSimulator
no official Rust target for this platform
CarPlayOS
no official Rust target for this platform
CarPlayOSSimulator
no official Rust target for this platform
Implementations§
Trait Implementations§
source§impl Clone for ApplePlatform
impl Clone for ApplePlatform
source§fn clone(&self) -> ApplePlatform
fn clone(&self) -> ApplePlatform
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more