Struct python_parser::ast::UntypedArgsList[][src]

pub struct UntypedArgsList {
    pub positional_args: Vec<(Name, Option<Expression>)>,
    pub star_args: StarParams<Name>,
    pub keyword_args: Vec<(Name, Option<Expression>)>,
    pub star_kwargs: Option<Name>,
}

The list of parameters of a lambda definition.

Fields

Trait Implementations

impl Clone for UntypedArgsList
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UntypedArgsList
[src]

Formats the value using the given formatter. Read more

impl PartialEq for UntypedArgsList
[src]

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

This method tests for !=.

impl Default for UntypedArgsList
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations