Struct google_testing1::IosTestSetup
source · pub struct IosTestSetup {
pub network_profile: Option<String>,
}Expand description
A description of how to set up an iOS device prior to a test.
This type is not used in any activity, and only used as part of another schema.
Fields§
§network_profile: Option<String>Optional. The network traffic profile used for running the test. Available network profiles can be queried by using the NETWORK_CONFIGURATION environment type when calling TestEnvironmentDiscoveryService.GetTestEnvironmentCatalog.
Trait Implementations§
source§impl Clone for IosTestSetup
impl Clone for IosTestSetup
source§fn clone(&self) -> IosTestSetup
fn clone(&self) -> IosTestSetup
Returns a copy 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 IosTestSetup
impl Debug for IosTestSetup
source§impl Default for IosTestSetup
impl Default for IosTestSetup
source§fn default() -> IosTestSetup
fn default() -> IosTestSetup
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for IosTestSetup
impl<'de> Deserialize<'de> for IosTestSetup
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for IosTestSetup
impl Serialize for IosTestSetup
impl Part for IosTestSetup
Auto Trait Implementations§
impl Freeze for IosTestSetup
impl RefUnwindSafe for IosTestSetup
impl Send for IosTestSetup
impl Sync for IosTestSetup
impl Unpin for IosTestSetup
impl UnwindSafe for IosTestSetup
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more