Enum python_parser::ast::Argument [−][src]
pub enum Argument { Positional(Expression), Starargs(Expression), Keyword(Name, Expression), Kwargs(Expression), }
An argument to a function call
Variants
Positional(Expression)
Starargs(Expression)
Keyword(Name, Expression)
Kwargs(Expression)
Trait Implementations
impl Clone for Argument
[src]
impl Clone for Argument
fn clone(&self) -> Argument
[src]
fn clone(&self) -> Argument
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl Debug for Argument
[src]
impl Debug for Argument
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl PartialEq for Argument
[src]
impl PartialEq for Argument