Struct pythonic::argument::KeywordArgument [] [src]

pub struct KeywordArgument {
    pub keyword: String,
    pub argument: String,
}

Fields

keyword: String argument: String

Methods

impl KeywordArgument
[src]

fn new<T: Display>(name: T, arg: T) -> KeywordArgument

Trait Implementations

impl Clone for KeywordArgument
[src]

fn clone(&self) -> KeywordArgument

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

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

Formats the value using the given formatter.

impl Display for KeywordArgument
[src]

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

Formats the value using the given formatter.