Struct google_testing1::EnvironmentMatrix[][src]

pub struct EnvironmentMatrix {
    pub android_device_list: Option<AndroidDeviceList>,
    pub android_matrix: Option<AndroidMatrix>,
    pub ios_device_list: Option<IosDeviceList>,
}

The matrix of environments in which the test is to be executed.

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

Fields

A list of Android devices; the test will be run only on the specified devices.

A matrix of Android devices.

A list of iOS devices.

Trait Implementations

impl Default for EnvironmentMatrix
[src]

Returns the "default value" for a type. Read more

impl Clone for EnvironmentMatrix
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for EnvironmentMatrix
[src]

Formats the value using the given formatter. Read more

impl Part for EnvironmentMatrix
[src]

Auto Trait Implementations