Struct azure_devops_rust_api::test::models::SuiteCreateModel
source · pub struct SuiteCreateModel {
pub name: Option<String>,
pub query_string: Option<String>,
pub requirement_ids: Vec<i32>,
pub suite_type: Option<String>,
}Expand description
Suite create model
Fields§
§name: Option<String>Name of test suite.
query_string: Option<String>For query based suites, query string that defines the suite.
requirement_ids: Vec<i32>For requirements test suites, the IDs of the requirements.
suite_type: Option<String>Type of test suite to create. It can have value from DynamicTestSuite, StaticTestSuite and RequirementTestSuite.
Implementations§
Trait Implementations§
source§impl Clone for SuiteCreateModel
impl Clone for SuiteCreateModel
source§fn clone(&self) -> SuiteCreateModel
fn clone(&self) -> SuiteCreateModel
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 SuiteCreateModel
impl Debug for SuiteCreateModel
source§impl Default for SuiteCreateModel
impl Default for SuiteCreateModel
source§fn default() -> SuiteCreateModel
fn default() -> SuiteCreateModel
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SuiteCreateModel
impl<'de> Deserialize<'de> for SuiteCreateModel
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<SuiteCreateModel> for SuiteCreateModel
impl PartialEq<SuiteCreateModel> for SuiteCreateModel
source§fn eq(&self, other: &SuiteCreateModel) -> bool
fn eq(&self, other: &SuiteCreateModel) -> bool
This method tests for
self and other values to be equal, and is used
by ==.