Struct pythonic::function::FunctionCall [] [src]

pub struct FunctionCall {
    pub name: String,
    pub arguments: Vec<Statement>,
}

Fields

name: String arguments: Vec<Statement>

Methods

impl FunctionCall
[src]

fn new<T: Display>(name: T, arguments: Vec<Statement>) -> FunctionCall

Trait Implementations

impl Clone for FunctionCall
[src]

fn clone(&self) -> FunctionCall

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Debug for FunctionCall
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for FunctionCall
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.