Struct azure_devops_rust_api::test_plan::models::TestPointResults
source · pub struct TestPointResults {
pub failure_type: Option<FailureType>,
pub last_resolution_state: Option<LastResolutionState>,
pub last_result_details: Option<LastResultDetails>,
pub last_result_id: Option<i32>,
pub last_result_state: Option<LastResultState>,
pub last_run_build_number: Option<String>,
pub last_test_run_id: Option<i32>,
pub outcome: Option<Outcome>,
pub state: Option<State>,
}
Expand description
Test Point Results
Fields§
§failure_type: Option<FailureType>
Failure Type for the Test Point
last_resolution_state: Option<LastResolutionState>
Last Resolution State Id for the Test Point
last_result_details: Option<LastResultDetails>
Last result details of test point.
last_result_id: Option<i32>
Last Result Id
last_result_state: Option<LastResultState>
Last Result State of the Test Point
last_run_build_number: Option<String>
Last RUn Build Number for the Test Point
last_test_run_id: Option<i32>
Last Test Run Id for the Test Point
outcome: Option<Outcome>
Outcome of the Test Point
state: Option<State>
State of the Test Point
Implementations§
Trait Implementations§
source§impl Clone for TestPointResults
impl Clone for TestPointResults
source§fn clone(&self) -> TestPointResults
fn clone(&self) -> TestPointResults
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 TestPointResults
impl Debug for TestPointResults
source§impl Default for TestPointResults
impl Default for TestPointResults
source§fn default() -> TestPointResults
fn default() -> TestPointResults
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestPointResults
impl<'de> Deserialize<'de> for TestPointResults
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 TestPointResults
impl PartialEq for TestPointResults
source§fn eq(&self, other: &TestPointResults) -> bool
fn eq(&self, other: &TestPointResults) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TestPointResults
impl Serialize for TestPointResults
impl StructuralPartialEq for TestPointResults
Auto Trait Implementations§
impl RefUnwindSafe for TestPointResults
impl Send for TestPointResults
impl Sync for TestPointResults
impl Unpin for TestPointResults
impl UnwindSafe for TestPointResults
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