pub struct TestSuiteCreateUpdateCommonParams {
pub default_configurations: Vec<TestConfigurationReference>,
pub default_testers: Vec<IdentityRef>,
pub inherit_default_configurations: Option<bool>,
pub name: Option<String>,
pub parent_suite: Option<TestSuiteReference>,
pub query_string: Option<String>,
}
Expand description
Test Suite Create/Update Common Parameters
Fields§
§default_configurations: Vec<TestConfigurationReference>
Test suite default configurations.
default_testers: Vec<IdentityRef>
Test suite default testers.
inherit_default_configurations: Option<bool>
Default configuration was inherited or not.
name: Option<String>
Name of test suite.
parent_suite: Option<TestSuiteReference>
The test suite reference resource.
query_string: Option<String>
Test suite query string, for dynamic suites.
Implementations§
Trait Implementations§
source§impl Clone for TestSuiteCreateUpdateCommonParams
impl Clone for TestSuiteCreateUpdateCommonParams
source§fn clone(&self) -> TestSuiteCreateUpdateCommonParams
fn clone(&self) -> TestSuiteCreateUpdateCommonParams
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 Default for TestSuiteCreateUpdateCommonParams
impl Default for TestSuiteCreateUpdateCommonParams
source§fn default() -> TestSuiteCreateUpdateCommonParams
fn default() -> TestSuiteCreateUpdateCommonParams
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestSuiteCreateUpdateCommonParams
impl<'de> Deserialize<'de> for TestSuiteCreateUpdateCommonParams
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 PartialEq for TestSuiteCreateUpdateCommonParams
impl PartialEq for TestSuiteCreateUpdateCommonParams
source§fn eq(&self, other: &TestSuiteCreateUpdateCommonParams) -> bool
fn eq(&self, other: &TestSuiteCreateUpdateCommonParams) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TestSuiteCreateUpdateCommonParams
Auto Trait Implementations§
impl RefUnwindSafe for TestSuiteCreateUpdateCommonParams
impl Send for TestSuiteCreateUpdateCommonParams
impl Sync for TestSuiteCreateUpdateCommonParams
impl Unpin for TestSuiteCreateUpdateCommonParams
impl UnwindSafe for TestSuiteCreateUpdateCommonParams
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