Struct gapi_grpc::google::devtools::build::v1::BuildStatus[][src]

pub struct BuildStatus {
    pub result: i32,
    pub final_invocation_id: String,
    pub build_tool_exit_code: Option<i32>,
    pub details: Option<Any>,
}

Status used for both invocation attempt and overall build completion.

Fields

result: i32

The end result.

final_invocation_id: String

Final invocation ID of the build, if there was one. This field is only set on a status in BuildFinished event.

build_tool_exit_code: Option<i32>

Build tool exit code. Integer value returned by the executed build tool. Might not be available in some cases, e.g., a build timeout.

details: Option<Any>

Fine-grained diagnostic information to complement the status.

Implementations

impl BuildStatus[src]

pub fn result(&self) -> Result[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: Result)[src]

Sets result to the provided enum value.

Trait Implementations

impl Clone for BuildStatus[src]

impl Debug for BuildStatus[src]

impl Default for BuildStatus[src]

impl Message for BuildStatus[src]

impl PartialEq<BuildStatus> for BuildStatus[src]

impl StructuralPartialEq for BuildStatus[src]

Auto Trait Implementations

impl RefUnwindSafe for BuildStatus

impl Send for BuildStatus

impl Sync for BuildStatus

impl Unpin for BuildStatus

impl UnwindSafe for BuildStatus

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]