Enum pythonic::argument::Argument [] [src]

pub enum Argument {
    FunctionDefinition {
        name: String,
        default: Option<String>,
        help: Option<String>,
        arg_type: Option<String>,
    },
    Variable(String),
    Unnamed(String),
}

Variants

Fields of FunctionDefinition

Methods

impl Argument
[src]

Trait Implementations

impl Debug for Argument
[src]

Formats the value using the given formatter.

impl Clone for Argument
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for Argument
[src]

Formats the value using the given formatter. Read more