Struct azure_devops_rust_api::test::models::SuiteUpdateModel
source · pub struct SuiteUpdateModel {
pub default_configurations: Vec<ShallowReference>,
pub default_testers: Vec<ShallowReference>,
pub inherit_default_configurations: Option<bool>,
pub name: Option<String>,
pub parent: Option<ShallowReference>,
pub query_string: Option<String>,
}Expand description
Test suite update model.
Fields§
§default_configurations: Vec<ShallowReference>Shallow reference of default configurations for the suite.
default_testers: Vec<ShallowReference>Shallow reference of test suite.
inherit_default_configurations: Option<bool>Specifies if the default configurations have to be inherited from the parent test suite in which the test suite is created.
name: Option<String>Test suite name
parent: Option<ShallowReference>An abstracted reference to some other resource. This class is used to provide the build data contracts with a uniform way to reference other resources in a way that provides easy traversal through links.
query_string: Option<String>For query based suites, the new query string.
Implementations§
Trait Implementations§
source§impl Clone for SuiteUpdateModel
impl Clone for SuiteUpdateModel
source§fn clone(&self) -> SuiteUpdateModel
fn clone(&self) -> SuiteUpdateModel
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 SuiteUpdateModel
impl Debug for SuiteUpdateModel
source§impl Default for SuiteUpdateModel
impl Default for SuiteUpdateModel
source§fn default() -> SuiteUpdateModel
fn default() -> SuiteUpdateModel
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SuiteUpdateModel
impl<'de> Deserialize<'de> for SuiteUpdateModel
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 SuiteUpdateModel
impl PartialEq for SuiteUpdateModel
source§fn eq(&self, other: &SuiteUpdateModel) -> bool
fn eq(&self, other: &SuiteUpdateModel) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for SuiteUpdateModel
impl Serialize for SuiteUpdateModel
impl StructuralPartialEq for SuiteUpdateModel
Auto Trait Implementations§
impl RefUnwindSafe for SuiteUpdateModel
impl Send for SuiteUpdateModel
impl Sync for SuiteUpdateModel
impl Unpin for SuiteUpdateModel
impl UnwindSafe for SuiteUpdateModel
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