pub enum SDK {
iPhoneOS(Option<&'static str>),
iPhoneSimulator(Option<&'static str>),
macOS(Option<&'static str>),
}
Expand description
Represents the --sdk
argument for xcrun.
A None
argument will select the default version.
Example usages:
SDK::iPhoneOS(None)
, SDK::macOS(Some("10.15"))
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SDK
impl RefUnwindSafe for SDK
impl Send for SDK
impl Sync for SDK
impl Unpin for SDK
impl UnwindSafe for SDK
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