pub struct TestRun {
Show 21 fields pub test_run_basic: TestRunBasic, pub abort_message: Option<TestRunAbortMessage>, pub aut_initialization_error: Option<bool>, pub chargeable: Option<bool>, pub charged_v_userminutes: Option<i32>, pub description: Option<String>, pub execution_finished_date: Option<OffsetDateTime>, pub execution_started_date: Option<OffsetDateTime>, pub queued_date: Option<OffsetDateTime>, pub retention_state: Option<RetentionState>, pub run_source_identifier: Option<String>, pub run_source_url: Option<String>, pub started_by: Option<IdentityRef>, pub started_date: Option<OffsetDateTime>, pub stopped_by: Option<IdentityRef>, pub sub_state: Option<SubState>, pub supersede_run_settings: Option<OverridableRunSettings>, pub test_drop: Option<TestDropRef>, pub test_settings: Option<TestSettings>, pub warm_up_started_date: Option<OffsetDateTime>, pub web_result_url: Option<String>,
}
Expand description

Fields§

§test_run_basic: TestRunBasic§abort_message: Option<TestRunAbortMessage>
§aut_initialization_error: Option<bool>

true if aut counter collection could not start due to some critical error for this run.

§chargeable: Option<bool>

Whether run is chargeable or not Its chargeable once we configured agent and sent start signal

§charged_v_userminutes: Option<i32>

Whether run is chargeable or not The Charged VUser Minutes for the RUN

§description: Option<String>

Test run description.

§execution_finished_date: Option<OffsetDateTime>

Gets the time when the test run execution finished

§execution_started_date: Option<OffsetDateTime>

Gets the time when the test run warmup finished(if warmup was specified) and load test started

§queued_date: Option<OffsetDateTime>

Gets the time when the test run was queued

§retention_state: Option<RetentionState>

Retention state of the run

§run_source_identifier: Option<String>§run_source_url: Option<String>

The uri to the run source.

§started_by: Option<IdentityRef>
§started_date: Option<OffsetDateTime>

When the test run started execution.

§stopped_by: Option<IdentityRef>
§sub_state: Option<SubState>

SubState is more granular description of the state

§supersede_run_settings: Option<OverridableRunSettings>
§test_drop: Option<TestDropRef>

An abstracted reference to some other resource. This class is used to provide the load test data contracts with a uniform way to reference other resources in a way that provides easy traversal through links.

§test_settings: Option<TestSettings>
§warm_up_started_date: Option<OffsetDateTime>

Gets the time when the test run warmup started

§web_result_url: Option<String>

The uri to the vso detailed result.

Implementations§

source§

impl TestRun

source

pub fn new() -> Self

Trait Implementations§

source§

impl Clone for TestRun

source§

fn clone(&self) -> TestRun

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 TestRun

source§

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

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

impl Default for TestRun

source§

fn default() -> TestRun

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

impl<'de> Deserialize<'de> for TestRun

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<TestRun> for TestRun

source§

fn eq(&self, other: &TestRun) -> 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 TestRun

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 TestRun

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere 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 Twhere 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 Twhere 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 Twhere 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 Twhere 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.
§

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

§

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 Twhere T: for<'de> Deserialize<'de>,