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

pub struct BuildAction {
    pub type: String,
    pub primary_input_path: String,
    pub primary_output_path: String,
}

A build action, such as building a java library.

Fields

type: String

The type of the action. This is intended to be a clue as to how the output of the action should be parsed. For example “javac” for a Java compile action.

primary_input_path: String

The “primary” input artifact processed by this action. E.g., the .cc file of a C++ compile action. Empty string (“”) if the action has no input artifacts or no “primary” input artifact.

primary_output_path: String

The “primary” output artifact processed by this action. E.g., the .o file of a C++ compile action. Empty string (“”) if the action has no output artifacts or no “primary” output artifact.

Trait Implementations

impl Clone for BuildAction[src]

impl Debug for BuildAction[src]

impl Default for BuildAction[src]

impl Message for BuildAction[src]

impl PartialEq<BuildAction> for BuildAction[src]

impl StructuralPartialEq for BuildAction[src]

Auto Trait Implementations

impl RefUnwindSafe for BuildAction

impl Send for BuildAction

impl Sync for BuildAction

impl Unpin for BuildAction

impl UnwindSafe for BuildAction

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]