pub struct TestCaseAssociatedResult {
pub completed_date: Option<OffsetDateTime>,
pub configuration: Option<TestConfigurationReference>,
pub outcome: Option<Outcome>,
pub plan: Option<TestPlanReference>,
pub point_id: Option<i32>,
pub result_id: Option<i32>,
pub run_by: Option<IdentityRef>,
pub run_id: Option<i32>,
pub suite: Option<TestSuiteReference>,
pub tester: Option<IdentityRef>,
}
Expand description
Fields§
§completed_date: Option<OffsetDateTime>
§configuration: Option<TestConfigurationReference>
Test Configuration Reference
outcome: Option<Outcome>
§plan: Option<TestPlanReference>
The test plan reference resource.
point_id: Option<i32>
§result_id: Option<i32>
§run_by: Option<IdentityRef>
§run_id: Option<i32>
§suite: Option<TestSuiteReference>
The test suite reference resource.
tester: Option<IdentityRef>
Implementations§
Trait Implementations§
source§impl Clone for TestCaseAssociatedResult
impl Clone for TestCaseAssociatedResult
source§fn clone(&self) -> TestCaseAssociatedResult
fn clone(&self) -> TestCaseAssociatedResult
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 TestCaseAssociatedResult
impl Debug for TestCaseAssociatedResult
source§impl Default for TestCaseAssociatedResult
impl Default for TestCaseAssociatedResult
source§fn default() -> TestCaseAssociatedResult
fn default() -> TestCaseAssociatedResult
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestCaseAssociatedResult
impl<'de> Deserialize<'de> for TestCaseAssociatedResult
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 TestCaseAssociatedResult
impl PartialEq for TestCaseAssociatedResult
source§fn eq(&self, other: &TestCaseAssociatedResult) -> bool
fn eq(&self, other: &TestCaseAssociatedResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TestCaseAssociatedResult
impl Serialize for TestCaseAssociatedResult
impl StructuralPartialEq for TestCaseAssociatedResult
Auto Trait Implementations§
impl Freeze for TestCaseAssociatedResult
impl RefUnwindSafe for TestCaseAssociatedResult
impl Send for TestCaseAssociatedResult
impl Sync for TestCaseAssociatedResult
impl Unpin for TestCaseAssociatedResult
impl UnwindSafe for TestCaseAssociatedResult
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