pub struct LegacyTestCaseResult {
Show 55 fields pub afn_strip_id: Option<i32>, pub area_id: Option<i32>, pub area_uri: Option<String>, pub automated_test_id: Option<String>, pub automated_test_name: Option<String>, pub automated_test_storage: Option<String>, pub automated_test_type: Option<String>, pub automated_test_type_id: Option<String>, pub build_number: Option<String>, pub build_reference: Option<LegacyBuildConfiguration>, pub comment: Option<String>, pub computer_name: Option<String>, pub configuration_id: Option<i32>, pub configuration_name: Option<String>, pub creation_date: Option<OffsetDateTime>, pub custom_fields: Vec<TestExtensionField>, pub date_completed: Option<OffsetDateTime>, pub date_started: Option<OffsetDateTime>, pub duration: Option<i64>, pub error_message: Option<String>, pub failing_since: Option<FailingSince>, pub failure_type: Option<String>, pub id: Option<LegacyTestCaseResultIdentifier>, pub is_rerun: Option<bool>, pub last_updated: Option<OffsetDateTime>, pub last_updated_by: Option<String>, pub last_updated_by_name: Option<String>, pub outcome: Option<String>, pub owner: Option<String>, pub owner_name: Option<String>, pub priority: Option<String>, pub release_reference: Option<LegacyReleaseReference>, pub reset_count: Option<i32>, pub resolution_state_id: Option<i32>, pub result_group_type: Option<ResultGroupType>, pub revision: Option<i32>, pub run_by: Option<String>, pub run_by_name: Option<String>, pub sequence_id: Option<i32>, pub stack_trace: Option<TestExtensionField>, pub state: Option<String>, pub sub_result_count: Option<i32>, pub suite_name: Option<String>, pub test_case_area: Option<String>, pub test_case_area_uri: Option<String>, pub test_case_id: Option<i32>, pub test_case_reference_id: Option<i32>, pub test_case_revision: Option<i32>, pub test_case_title: Option<String>, pub test_plan_id: Option<i32>, pub test_point_id: Option<i32>, pub test_result_id: Option<i32>, pub test_run_id: Option<i32>, pub test_run_title: Option<String>, pub test_suite_id: Option<i32>,
}
Expand description

Fields§

§afn_strip_id: Option<i32>§area_id: Option<i32>§area_uri: Option<String>§automated_test_id: Option<String>§automated_test_name: Option<String>§automated_test_storage: Option<String>§automated_test_type: Option<String>§automated_test_type_id: Option<String>§build_number: Option<String>§build_reference: Option<LegacyBuildConfiguration>
§comment: Option<String>§computer_name: Option<String>§configuration_id: Option<i32>§configuration_name: Option<String>§creation_date: Option<OffsetDateTime>§custom_fields: Vec<TestExtensionField>§date_completed: Option<OffsetDateTime>§date_started: Option<OffsetDateTime>§duration: Option<i64>§error_message: Option<String>§failing_since: Option<FailingSince>

Failing since information of a test result.

§failure_type: Option<String>§id: Option<LegacyTestCaseResultIdentifier>
§is_rerun: Option<bool>§last_updated: Option<OffsetDateTime>§last_updated_by: Option<String>§last_updated_by_name: Option<String>§outcome: Option<String>§owner: Option<String>§owner_name: Option<String>§priority: Option<String>§release_reference: Option<LegacyReleaseReference>
§reset_count: Option<i32>§resolution_state_id: Option<i32>§result_group_type: Option<ResultGroupType>§revision: Option<i32>§run_by: Option<String>§run_by_name: Option<String>§sequence_id: Option<i32>§stack_trace: Option<TestExtensionField>
§state: Option<String>§sub_result_count: Option<i32>§suite_name: Option<String>§test_case_area: Option<String>§test_case_area_uri: Option<String>§test_case_id: Option<i32>§test_case_reference_id: Option<i32>§test_case_revision: Option<i32>§test_case_title: Option<String>§test_plan_id: Option<i32>§test_point_id: Option<i32>§test_result_id: Option<i32>§test_run_id: Option<i32>§test_run_title: Option<String>§test_suite_id: Option<i32>

Implementations§

Trait Implementations§

source§

impl Clone for LegacyTestCaseResult

source§

fn clone(&self) -> LegacyTestCaseResult

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for LegacyTestCaseResult

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for LegacyTestCaseResult

source§

fn default() -> LegacyTestCaseResult

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for LegacyTestCaseResult

source§

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 LegacyTestCaseResult

source§

fn eq(&self, other: &LegacyTestCaseResult) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for LegacyTestCaseResult

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for LegacyTestCaseResult

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for T
where T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,