Struct lit::tool::Invocation [] [src]

pub struct Invocation {
    pub executable: String,
    pub arguments: Vec<Argument>,
}

A tool invocation.

Fields

Methods

impl Invocation
[src]

Parses a tool invocation.

It is in the format:

<tool-name> [arg1] [arg2] ...

Trait Implementations

impl Clone for Invocation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Invocation
[src]

Formats the value using the given formatter.

impl PartialEq for Invocation
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Invocation
[src]