pub enum ApplePlatform {
Show 13 variants
UNKNOWN,
MACOS,
IOS,
TVOS,
WATCHOS,
BRIDGEOS,
MACCATALYST,
IOSSIMULATOR,
TVOSSIMULATOR,
WATCHOSSIMULATOR,
DRIVERKIT,
XROS,
XROS_SIMULATOR,
}Variants§
UNKNOWN
MACOS
IOS
TVOS
WATCHOS
BRIDGEOS
MACCATALYST
IOSSIMULATOR
TVOSSIMULATOR
WATCHOSSIMULATOR
DRIVERKIT
XROS
XROS_SIMULATOR
Implementations§
Source§impl ApplePlatform
impl ApplePlatform
Sourcepub fn into_iter() -> IntoIter<ApplePlatform, 13>
pub fn into_iter() -> IntoIter<ApplePlatform, 13>
Trait Implementations§
Source§impl Clone for ApplePlatform
impl Clone for ApplePlatform
Source§fn clone(&self) -> ApplePlatform
fn clone(&self) -> ApplePlatform
Returns a duplicate 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 Default for ApplePlatform
impl Default for ApplePlatform
Source§impl Into<ApplePlatform> for Platform<'static>
impl Into<ApplePlatform> for Platform<'static>
Source§fn into(self) -> ApplePlatform
fn into(self) -> ApplePlatform
Converts this type into the (usually inferred) input type.
Source§impl TryFrom<ApplePlatform> for Platform<'_>
impl TryFrom<ApplePlatform> for Platform<'_>
impl Copy 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