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 moreSource§impl Debug for ApplePlatform
impl Debug for ApplePlatform
Source§impl Hash for ApplePlatform
impl Hash for ApplePlatform
Source§impl PartialEq for ApplePlatform
impl PartialEq for ApplePlatform
impl Copy for ApplePlatform
impl Eq for ApplePlatform
impl StructuralPartialEq for ApplePlatform
Auto Trait Implementations§
impl Freeze for ApplePlatform
impl RefUnwindSafe for ApplePlatform
impl Send for ApplePlatform
impl Sync for ApplePlatform
impl Unpin for ApplePlatform
impl UnwindSafe for ApplePlatform
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