pub struct TestPlanCreateParams {
pub area_path: Option<String>,
pub build_definition: Option<BuildDefinitionReference>,
pub build_id: Option<i32>,
pub description: Option<String>,
pub end_date: Option<OffsetDateTime>,
pub iteration: Option<String>,
pub name: Option<String>,
pub owner: Option<IdentityRef>,
pub release_environment_definition: Option<ReleaseEnvironmentDefinitionReference>,
pub start_date: Option<OffsetDateTime>,
pub state: Option<String>,
pub test_outcome_settings: Option<TestOutcomeSettings>,
}
Expand description
The test plan create parameters.
Fields§
§area_path: Option<String>
Area of the test plan.
build_definition: Option<BuildDefinitionReference>
The build definition reference resource
build_id: Option<i32>
Build to be tested.
description: Option<String>
Description of the test plan.
end_date: Option<OffsetDateTime>
End date for the test plan.
iteration: Option<String>
Iteration path of the test plan.
name: Option<String>
Name of the test plan.
owner: Option<IdentityRef>
§release_environment_definition: Option<ReleaseEnvironmentDefinitionReference>
Reference to release environment resource.
start_date: Option<OffsetDateTime>
Start date for the test plan.
state: Option<String>
State of the test plan.
test_outcome_settings: Option<TestOutcomeSettings>
Test outcome settings
Implementations§
Trait Implementations§
source§impl Clone for TestPlanCreateParams
impl Clone for TestPlanCreateParams
source§fn clone(&self) -> TestPlanCreateParams
fn clone(&self) -> TestPlanCreateParams
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 TestPlanCreateParams
impl Debug for TestPlanCreateParams
source§impl Default for TestPlanCreateParams
impl Default for TestPlanCreateParams
source§fn default() -> TestPlanCreateParams
fn default() -> TestPlanCreateParams
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestPlanCreateParams
impl<'de> Deserialize<'de> for TestPlanCreateParams
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 TestPlanCreateParams
impl PartialEq for TestPlanCreateParams
source§fn eq(&self, other: &TestPlanCreateParams) -> bool
fn eq(&self, other: &TestPlanCreateParams) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TestPlanCreateParams
impl Serialize for TestPlanCreateParams
impl StructuralPartialEq for TestPlanCreateParams
Auto Trait Implementations§
impl Freeze for TestPlanCreateParams
impl RefUnwindSafe for TestPlanCreateParams
impl Send for TestPlanCreateParams
impl Sync for TestPlanCreateParams
impl Unpin for TestPlanCreateParams
impl UnwindSafe for TestPlanCreateParams
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