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

pub struct CommandLine {
    pub label: String,
    pub tool: String,
    pub args: Vec<String>,
    pub command: String,
}

The command and arguments that produced this Invocation.

Fields

label: String

A label describing this command line.

tool: String

The command-line tool that is run: argv[0].

args: Vec<String>

The arguments to the above tool: argv[1]…argv[N].

command: String

The subcommand that was run with the tool, usually “build” or “test”. For example, in the Bazel command “bazel build //foo”, this would be set to “build”. Omit if the tool doesn’t accept a subcommand. This is must be a reference to one of values in args.

Trait Implementations

impl Clone for CommandLine[src]

impl Debug for CommandLine[src]

impl Default for CommandLine[src]

impl Message for CommandLine[src]

impl PartialEq<CommandLine> for CommandLine[src]

impl StructuralPartialEq for CommandLine[src]

Auto Trait Implementations

impl RefUnwindSafe for CommandLine

impl Send for CommandLine

impl Sync for CommandLine

impl Unpin for CommandLine

impl UnwindSafe for CommandLine

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]