Enum pythonic::statement::Statement [] [src]

pub enum Statement {
    Argument(Argument),
    Assignment(Assignment),
    Class(Class),
    Comment(Comment),
    Function(Function),
    FunctionCall(FunctionCall),
    KeywordArgument(KeywordArgument),
}

Variants

Argument(Argument)Assignment(Assignment)Class(Class)Comment(Comment)Function(Function)FunctionCall(FunctionCall)KeywordArgument(KeywordArgument)

Trait Implementations

impl Clone for Statement
[src]

fn clone(&self) -> Statement

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 Statement
[src]

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

Formats the value using the given formatter.

impl Display for Statement
[src]

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

Formats the value using the given formatter.