Struct aws_sdk_glue::model::StatementOutput
source · #[non_exhaustive]pub struct StatementOutput { /* private fields */ }Expand description
The code execution output in JSON format.
Implementations§
source§impl StatementOutput
impl StatementOutput
sourcepub fn data(&self) -> Option<&StatementOutputData>
pub fn data(&self) -> Option<&StatementOutputData>
The code execution output.
sourcepub fn execution_count(&self) -> i32
pub fn execution_count(&self) -> i32
The execution count of the output.
sourcepub fn status(&self) -> Option<&StatementState>
pub fn status(&self) -> Option<&StatementState>
The status of the code execution output.
sourcepub fn error_name(&self) -> Option<&str>
pub fn error_name(&self) -> Option<&str>
The name of the error in the output.
sourcepub fn error_value(&self) -> Option<&str>
pub fn error_value(&self) -> Option<&str>
The error value of the output.
source§impl StatementOutput
impl StatementOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StatementOutput.
Trait Implementations§
source§impl Clone for StatementOutput
impl Clone for StatementOutput
source§fn clone(&self) -> StatementOutput
fn clone(&self) -> StatementOutput
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 StatementOutput
impl Debug for StatementOutput
source§impl PartialEq<StatementOutput> for StatementOutput
impl PartialEq<StatementOutput> for StatementOutput
source§fn eq(&self, other: &StatementOutput) -> bool
fn eq(&self, other: &StatementOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.