Struct gapi_grpc::google::devtools::remoteworkers::v1test2::CommandOutputs[][src]

pub struct CommandOutputs {
    pub exit_code: i32,
    pub outputs: Option<Digest>,
}

DEPRECATED - use CommandResult instead. Describes the actual outputs from the task.

Fields

exit_code: i32

exit_code is only fully reliable if the status’ code is OK. If the task exceeded its deadline or was cancelled, the process may still produce an exit code as it is cancelled, and this will be populated, but a successful (zero) is unlikely to be correct unless the status code is OK.

outputs: Option<Digest>

The output files. The blob referenced by the digest should contain one of the following (implementation-dependent):

Trait Implementations

impl Clone for CommandOutputs[src]

impl Debug for CommandOutputs[src]

impl Default for CommandOutputs[src]

impl Message for CommandOutputs[src]

impl PartialEq<CommandOutputs> for CommandOutputs[src]

impl StructuralPartialEq for CommandOutputs[src]

Auto Trait Implementations

impl RefUnwindSafe for CommandOutputs

impl Send for CommandOutputs

impl Sync for CommandOutputs

impl Unpin for CommandOutputs

impl UnwindSafe for CommandOutputs

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]