[][src]Struct google_testing1::IosTestLoop

pub struct IosTestLoop {
    pub scenarios: Option<Vec<i32>>,
    pub app_bundle_id: Option<String>,
    pub app_ipa: Option<FileReference>,
}

A test of an iOS application that implements one or more game loop scenarios. This test type accepts an archived application (.ipa file) and a list of integer scenarios that will be executed on the app sequentially.

This type is not used in any activity, and only used as part of another schema.

Fields

scenarios: Option<Vec<i32>>

The list of scenarios that should be run during the test. Defaults to the single scenario 0 if unspecified.

app_bundle_id: Option<String>

Output only. The bundle id for the application under test.

app_ipa: Option<FileReference>

Required. The .ipa of the application to test.

Trait Implementations

impl Clone for IosTestLoop[src]

impl Debug for IosTestLoop[src]

impl Default for IosTestLoop[src]

impl<'de> Deserialize<'de> for IosTestLoop[src]

impl Part for IosTestLoop[src]

impl Serialize for IosTestLoop[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.

impl<T> Typeable for T where
    T: Any