Struct aws_sdk_glue::model::CodeGenNode [−][src]
#[non_exhaustive]pub struct CodeGenNode {
pub id: Option<String>,
pub node_type: Option<String>,
pub args: Option<Vec<CodeGenNodeArg>>,
pub line_number: i32,
}Expand description
Represents a node in a directed acyclic graph (DAG)
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: Option<String>A node identifier that is unique within the node's graph.
node_type: Option<String>The type of node that this is.
args: Option<Vec<CodeGenNodeArg>>Properties of the node, in the form of name-value pairs.
line_number: i32The line number of the node.
Implementations
Properties of the node, in the form of name-value pairs.
The line number of the node.
Creates a new builder-style object to manufacture CodeGenNode
Trait Implementations
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 RefUnwindSafe for CodeGenNode
impl Send for CodeGenNode
impl Sync for CodeGenNode
impl Unpin for CodeGenNode
impl UnwindSafe for CodeGenNode
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
