Struct aws_sdk_athena::model::QueryStagePlanNode
source · #[non_exhaustive]pub struct QueryStagePlanNode { /* private fields */ }
Expand description
Stage plan information such as name, identifier, sub plans, and remote sources.
Implementations§
source§impl QueryStagePlanNode
impl QueryStagePlanNode
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
Name of the query stage plan that describes the operation this stage is performing as part of query execution.
sourcepub fn identifier(&self) -> Option<&str>
pub fn identifier(&self) -> Option<&str>
Information about the operation this query stage plan node is performing.
sourcepub fn children(&self) -> Option<&[QueryStagePlanNode]>
pub fn children(&self) -> Option<&[QueryStagePlanNode]>
Stage plan information such as name, identifier, sub plans, and remote sources of child plan nodes/
sourcepub fn remote_sources(&self) -> Option<&[String]>
pub fn remote_sources(&self) -> Option<&[String]>
Source plan node IDs.
source§impl QueryStagePlanNode
impl QueryStagePlanNode
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture QueryStagePlanNode
.
Trait Implementations§
source§impl Clone for QueryStagePlanNode
impl Clone for QueryStagePlanNode
source§fn clone(&self) -> QueryStagePlanNode
fn clone(&self) -> QueryStagePlanNode
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for QueryStagePlanNode
impl Debug for QueryStagePlanNode
source§impl PartialEq<QueryStagePlanNode> for QueryStagePlanNode
impl PartialEq<QueryStagePlanNode> for QueryStagePlanNode
source§fn eq(&self, other: &QueryStagePlanNode) -> bool
fn eq(&self, other: &QueryStagePlanNode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.