pub struct CreateInstanceProfileRequest {
pub description: Option<String>,
pub exclude_app_packages_from_cleanup: Option<Vec<String>>,
pub name: String,
pub package_cleanup: Option<bool>,
pub reboot_after_use: Option<bool>,
}Fields§
§description: Option<String>The description of your instance profile.
exclude_app_packages_from_cleanup: Option<Vec<String>>An array of strings that specifies the list of app packages that should not be cleaned up from the device after a test run.
The list of packages is considered only if you set packageCleanup to true.
name: StringThe name of your instance profile.
package_cleanup: Option<bool>When set to true, Device Farm removes app packages after a test run. The default value is false for private devices.
reboot_after_use: Option<bool>When set to true, Device Farm reboots the instance after a test run. The default value is true.
Trait Implementations§
Source§impl Clone for CreateInstanceProfileRequest
impl Clone for CreateInstanceProfileRequest
Source§fn clone(&self) -> CreateInstanceProfileRequest
fn clone(&self) -> CreateInstanceProfileRequest
Returns a duplicate 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 CreateInstanceProfileRequest
impl Debug for CreateInstanceProfileRequest
Source§impl Default for CreateInstanceProfileRequest
impl Default for CreateInstanceProfileRequest
Source§fn default() -> CreateInstanceProfileRequest
fn default() -> CreateInstanceProfileRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateInstanceProfileRequest
impl PartialEq for CreateInstanceProfileRequest
Source§fn eq(&self, other: &CreateInstanceProfileRequest) -> bool
fn eq(&self, other: &CreateInstanceProfileRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateInstanceProfileRequest
Auto Trait Implementations§
impl Freeze for CreateInstanceProfileRequest
impl RefUnwindSafe for CreateInstanceProfileRequest
impl Send for CreateInstanceProfileRequest
impl Sync for CreateInstanceProfileRequest
impl Unpin for CreateInstanceProfileRequest
impl UnwindSafe for CreateInstanceProfileRequest
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