Struct gapi_grpc::google::cloud::dataqna::v1alpha::ExecutionInfo[][src]

pub struct ExecutionInfo {
    pub job_creation_status: Option<Status>,
    pub job_execution_state: i32,
    pub create_time: Option<Timestamp>,
    pub bigquery_job: Option<BigQueryJob>,
}

Information about the backend status (such as BigQuery) of the execution.

Fields

job_creation_status: Option<Status>

Status returned by the backend when the job was created.

job_execution_state: i32

Status of the job execution.

create_time: Option<Timestamp>

Time when the execution was triggered.

bigquery_job: Option<BigQueryJob>

BigQuery job information. Future versions will have different backends. Hence, clients must make sure they can handle it when this field is not populated.

Implementations

impl ExecutionInfo[src]

pub fn job_execution_state(&self) -> JobExecutionState[src]

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

pub fn set_job_execution_state(&mut self, value: JobExecutionState)[src]

Sets job_execution_state to the provided enum value.

Trait Implementations

impl Clone for ExecutionInfo[src]

impl Debug for ExecutionInfo[src]

impl Default for ExecutionInfo[src]

impl Message for ExecutionInfo[src]

impl PartialEq<ExecutionInfo> for ExecutionInfo[src]

impl StructuralPartialEq for ExecutionInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for ExecutionInfo

impl Send for ExecutionInfo

impl Sync for ExecutionInfo

impl Unpin for ExecutionInfo

impl UnwindSafe for ExecutionInfo

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]