Enum graphviz_rust::cmd::CommandArg[][src]

pub enum CommandArg {
    Custom(String),
    Output(String),
    Layout(Layout),
    Format(Format),
}
Expand description

Command arguments that can be passed to exec. The list of possible commands

Variants

Custom(String)

any custom argument.

Note: it does not manage any prefixes and thus ‘-’ or the prefix must be passed as well.

Tuple Fields of Custom

0: String
Output(String)

Regulates the output file with -o prefix

Tuple Fields of Output

0: String
Layout(Layout)

Layouts in cmd

Tuple Fields of Layout

0: Layout
Format(Format)

Output formats in cmd

Tuple Fields of Format

0: Format

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.