[][src]Enum creator_simctl::io::Display

pub enum Display {
    Internal,
    External,
}

Distinguishes the display for devices that have multiple.

Variants

Internal

Indicates the internal display. The internal display is the "main display" embedded in the hardware. This is supported by iOS and watchOS.

External

Indicates the external display. The external display is a connected display. This is supported by the iOS simulator (although it's currently not possible to setup such an external display through this library) and tvOS, where it's the only available display because the hardware itself obviously doesn't have a display.

Trait Implementations

impl Clone for Display[src]

impl Copy for Display[src]

impl Debug for Display[src]

impl Eq for Display[src]

impl PartialEq<Display> for Display[src]

impl StructuralEq for Display[src]

impl StructuralPartialEq for Display[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.