pub struct TestSettings2 {
pub area_path: Option<String>,
pub created_by: Option<IdentityRef>,
pub created_date: Option<OffsetDateTime>,
pub description: Option<String>,
pub is_public: Option<bool>,
pub last_updated_by: Option<IdentityRef>,
pub last_updated_date: Option<OffsetDateTime>,
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
created_by: Option<IdentityRef>§created_date: Option<OffsetDateTime>§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.
last_updated_by: Option<IdentityRef>§last_updated_date: Option<OffsetDateTime>§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 TestSettings2
impl TestSettings2
Trait Implementations§
Source§impl Clone for TestSettings2
impl Clone for TestSettings2
Source§fn clone(&self) -> TestSettings2
fn clone(&self) -> TestSettings2
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 TestSettings2
impl Debug for TestSettings2
Source§impl Default for TestSettings2
impl Default for TestSettings2
Source§fn default() -> TestSettings2
fn default() -> TestSettings2
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestSettings2
impl<'de> Deserialize<'de> for TestSettings2
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 TestSettings2
impl PartialEq for TestSettings2
Source§impl Serialize for TestSettings2
impl Serialize for TestSettings2
impl StructuralPartialEq for TestSettings2
Auto Trait Implementations§
impl Freeze for TestSettings2
impl RefUnwindSafe for TestSettings2
impl Send for TestSettings2
impl Sync for TestSettings2
impl Unpin for TestSettings2
impl UnwindSafe for TestSettings2
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