Struct rusoto_glue::CodeGenNodeArg [] [src]

pub struct CodeGenNodeArg {
    pub name: String,
    pub param: Option<bool>,
    pub value: String,
}

An argument or property of a node.

Fields

The name of the argument or property.

True if the value is used as a parameter.

The value of the argument or property.

Trait Implementations

impl Default for CodeGenNodeArg
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for CodeGenNodeArg
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CodeGenNodeArg
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations