Struct azure_devops_rust_api::test::models::TestSettings
source · pub struct TestSettings {
pub area_path: Option<String>,
pub description: Option<String>,
pub is_public: Option<bool>,
pub machine_roles: Option<String>,
pub test_settings_content: Option<String>,
pub test_settings_id: Option<i32>,
pub test_settings_name: Option<String>,
}
Expand description
Represents the test settings of the run. Used to create test settings and fetch test settings
Fields§
§area_path: Option<String>
Area path required to create test settings
description: Option<String>
Description of the test settings. Used in create test settings.
is_public: Option<bool>
Indicates if the tests settings is public or private.Used in create test settings.
machine_roles: Option<String>
Xml string of machine roles. Used in create test settings.
test_settings_content: Option<String>
Test settings content.
test_settings_id: Option<i32>
Test settings id.
test_settings_name: Option<String>
Test settings name.
Implementations§
source§impl TestSettings
impl TestSettings
Trait Implementations§
source§impl Clone for TestSettings
impl Clone for TestSettings
source§fn clone(&self) -> TestSettings
fn clone(&self) -> TestSettings
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 TestSettings
impl Debug for TestSettings
source§impl Default for TestSettings
impl Default for TestSettings
source§fn default() -> TestSettings
fn default() -> TestSettings
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestSettings
impl<'de> Deserialize<'de> for TestSettings
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 TestSettings
impl PartialEq for TestSettings
source§fn eq(&self, other: &TestSettings) -> bool
fn eq(&self, other: &TestSettings) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TestSettings
impl Serialize for TestSettings
impl StructuralPartialEq for TestSettings
Auto Trait Implementations§
impl RefUnwindSafe for TestSettings
impl Send for TestSettings
impl Sync for TestSettings
impl Unpin for TestSettings
impl UnwindSafe for TestSettings
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