[][src]Struct google_testing1::TestExecution

pub struct TestExecution {
    pub project_id: Option<String>,
    pub matrix_id: Option<String>,
    pub shard: Option<Shard>,
    pub id: Option<String>,
    pub environment: Option<Environment>,
    pub state: Option<String>,
    pub test_specification: Option<TestSpecification>,
    pub timestamp: Option<String>,
    pub tool_results_step: Option<ToolResultsStep>,
    pub test_details: Option<TestDetails>,
}

A single test executed in a single environment.

This type is not used in any activity, and only used as part of another schema.

Fields

project_id: Option<String>

Output only. The cloud project that owns the test execution.

matrix_id: Option<String>

Output only. Id of the containing TestMatrix.

shard: Option<Shard>

Output only. Details about the shard.

id: Option<String>

Output only. Unique id set by the service.

environment: Option<Environment>

Output only. How the host machine(s) are configured.

state: Option<String>

Output only. Indicates the current progress of the test execution (e.g., FINISHED).

test_specification: Option<TestSpecification>

Output only. How to run the test.

timestamp: Option<String>

Output only. The time this test execution was initially created.

tool_results_step: Option<ToolResultsStep>

Output only. Where the results for this execution are written.

test_details: Option<TestDetails>

Output only. Additional details about the running test.

Trait Implementations

impl Clone for TestExecution[src]

impl Debug for TestExecution[src]

impl Default for TestExecution[src]

impl<'de> Deserialize<'de> for TestExecution[src]

impl Part for TestExecution[src]

impl Serialize for TestExecution[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any