[][src]Struct google_testing1::AndroidMatrix

pub struct AndroidMatrix {
    pub android_version_ids: Option<Vec<String>>,
    pub android_model_ids: Option<Vec<String>>,
    pub locales: Option<Vec<String>>,
    pub orientations: Option<Vec<String>>,
}

A set of Android device configuration permutations is defined by the the cross-product of the given axes. Internally, the given AndroidMatrix will be expanded into a set of AndroidDevices.

Only supported permutations will be instantiated. Invalid permutations (e.g., incompatible models/versions) are ignored.

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

Fields

android_version_ids: Option<Vec<String>>

Required. The ids of the set of Android OS version to be used. Use the TestEnvironmentDiscoveryService to get supported options.

android_model_ids: Option<Vec<String>>

Required. The ids of the set of Android device to be used. Use the TestEnvironmentDiscoveryService to get supported options.

locales: Option<Vec<String>>

Required. The set of locales the test device will enable for testing. Use the TestEnvironmentDiscoveryService to get supported options.

orientations: Option<Vec<String>>

Required. The set of orientations to test with. Use the TestEnvironmentDiscoveryService to get supported options.

Trait Implementations

impl Part for AndroidMatrix[src]

impl Default for AndroidMatrix[src]

impl Clone for AndroidMatrix[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for AndroidMatrix[src]

impl Serialize for AndroidMatrix[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]