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 Argumentfn clone(&self) -> Argument[src]
fn clone(&self) -> ArgumentReturns 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 Argumentfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Argument[src]
impl PartialEq for Argument