Struct rusoto_glue::CodeGenNode[][src]

pub struct CodeGenNode {
    pub args: Vec<CodeGenNodeArg>,
    pub id: String,
    pub line_number: Option<i64>,
    pub node_type: String,
}

Represents a node in a directed acyclic graph (DAG)

Fields

Properties of the node, in the form of name-value pairs.

A node identifier that is unique within the node's graph.

The line number of the node.

The type of node this is.

Trait Implementations

impl Default for CodeGenNode
[src]

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

impl Debug for CodeGenNode
[src]

Formats the value using the given formatter. Read more

impl Clone for CodeGenNode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CodeGenNode
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for CodeGenNode

impl Sync for CodeGenNode