Struct python_parser::ast::TypedArgsList[][src]

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

The list of parameters of a function definition.

Fields

Trait Implementations

impl Clone for TypedArgsList
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TypedArgsList
[src]

Formats the value using the given formatter. Read more

impl PartialEq for TypedArgsList
[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 TypedArgsList
[src]

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

Auto Trait Implementations