Struct gapi_grpc::google::cloud::dialogflow::cx::v3::ContinuousTestResult[][src]

pub struct ContinuousTestResult {
    pub name: String,
    pub result: i32,
    pub test_case_results: Vec<String>,
    pub run_time: Option<Timestamp>,
}

Represents a result from running a test case in an agent environment.

Fields

name: String

The resource name for the continuous test result. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/continuousTestResults/<ContinuousTestResult ID>.

result: i32

The result of this continuous test run, i.e. whether all the tests in this continuous test run pass or not.

test_case_results: Vec<String>

A list of individual test case results names in this continuous test run.

run_time: Option<Timestamp>

Time when the continuous testing run starts.

Implementations

impl ContinuousTestResult[src]

pub fn result(&self) -> AggregatedTestResult[src]

Returns the enum value of result, or the default if the field is set to an invalid enum value.

pub fn set_result(&mut self, value: AggregatedTestResult)[src]

Sets result to the provided enum value.

Trait Implementations

impl Clone for ContinuousTestResult[src]

impl Debug for ContinuousTestResult[src]

impl Default for ContinuousTestResult[src]

impl Message for ContinuousTestResult[src]

impl PartialEq<ContinuousTestResult> for ContinuousTestResult[src]

impl StructuralPartialEq for ContinuousTestResult[src]

Auto Trait Implementations

impl RefUnwindSafe for ContinuousTestResult

impl Send for ContinuousTestResult

impl Sync for ContinuousTestResult

impl Unpin for ContinuousTestResult

impl UnwindSafe for ContinuousTestResult

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]