Struct gapi_grpc::google::devtools::resultstore::v2::ActionAttributes[][src]

pub struct ActionAttributes {
    pub execution_strategy: i32,
    pub exit_code: i32,
    pub hostname: String,
    pub input_file_info: Option<InputFileInfo>,
}

General attributes of an action

Fields

execution_strategy: i32

Strategy used for executing the action.

exit_code: i32

Exit code of the process that ran the action. A non-zero value means failure.

hostname: String

Where the action was run.

input_file_info: Option<InputFileInfo>

Information about the input files used in all actions under this configured target.

Implementations

impl ActionAttributes[src]

pub fn execution_strategy(&self) -> ExecutionStrategy[src]

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

pub fn set_execution_strategy(&mut self, value: ExecutionStrategy)[src]

Sets execution_strategy to the provided enum value.

Trait Implementations

impl Clone for ActionAttributes[src]

impl Debug for ActionAttributes[src]

impl Default for ActionAttributes[src]

impl Message for ActionAttributes[src]

impl PartialEq<ActionAttributes> for ActionAttributes[src]

impl StructuralPartialEq for ActionAttributes[src]

Auto Trait Implementations

impl RefUnwindSafe for ActionAttributes

impl Send for ActionAttributes

impl Sync for ActionAttributes

impl Unpin for ActionAttributes

impl UnwindSafe for ActionAttributes

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]