pub struct TestResultParameterModel {
pub action_path: Option<String>,
pub iteration_id: Option<i32>,
pub parameter_name: Option<String>,
pub step_identifier: Option<String>,
pub url: Option<String>,
pub value: Option<String>,
}
Expand description
Test parameter information in a test iteration.
Fields§
§action_path: Option<String>
Test step path where parameter is referenced.
iteration_id: Option<i32>
Iteration ID.
parameter_name: Option<String>
Name of parameter.
step_identifier: Option<String>
This is step Id of test case. For shared step, it is step Id of shared step in test case workitem; step Id in shared step. Example: TestCase workitem has two steps: 1) Normal step with Id = 1 2) Shared Step with Id = 2. Inside shared step: a) Normal Step with Id = 1 Value for StepIdentifier for First step: “1” Second step: “2;1”
url: Option<String>
Url of test parameter. Deprecated in hosted environment.
value: Option<String>
Value of parameter.
Implementations§
Trait Implementations§
source§impl Clone for TestResultParameterModel
impl Clone for TestResultParameterModel
source§fn clone(&self) -> TestResultParameterModel
fn clone(&self) -> TestResultParameterModel
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 TestResultParameterModel
impl Debug for TestResultParameterModel
source§impl Default for TestResultParameterModel
impl Default for TestResultParameterModel
source§fn default() -> TestResultParameterModel
fn default() -> TestResultParameterModel
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestResultParameterModel
impl<'de> Deserialize<'de> for TestResultParameterModel
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 TestResultParameterModel
impl PartialEq for TestResultParameterModel
source§fn eq(&self, other: &TestResultParameterModel) -> bool
fn eq(&self, other: &TestResultParameterModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TestResultParameterModel
impl Serialize for TestResultParameterModel
impl StructuralPartialEq for TestResultParameterModel
Auto Trait Implementations§
impl RefUnwindSafe for TestResultParameterModel
impl Send for TestResultParameterModel
impl Sync for TestResultParameterModel
impl Unpin for TestResultParameterModel
impl UnwindSafe for TestResultParameterModel
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