Struct aws_sdk_glue::types::builders::StatementOutputDataBuilder
source · #[non_exhaustive]pub struct StatementOutputDataBuilder { /* private fields */ }Expand description
A builder for StatementOutputData.
Implementations§
source§impl StatementOutputDataBuilder
impl StatementOutputDataBuilder
sourcepub fn text_plain(self, input: impl Into<String>) -> Self
pub fn text_plain(self, input: impl Into<String>) -> Self
The code execution output in text format.
sourcepub fn set_text_plain(self, input: Option<String>) -> Self
pub fn set_text_plain(self, input: Option<String>) -> Self
The code execution output in text format.
sourcepub fn get_text_plain(&self) -> &Option<String>
pub fn get_text_plain(&self) -> &Option<String>
The code execution output in text format.
sourcepub fn build(self) -> StatementOutputData
pub fn build(self) -> StatementOutputData
Consumes the builder and constructs a StatementOutputData.
Trait Implementations§
source§impl Clone for StatementOutputDataBuilder
impl Clone for StatementOutputDataBuilder
source§fn clone(&self) -> StatementOutputDataBuilder
fn clone(&self) -> StatementOutputDataBuilder
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 StatementOutputDataBuilder
impl Debug for StatementOutputDataBuilder
source§impl Default for StatementOutputDataBuilder
impl Default for StatementOutputDataBuilder
source§fn default() -> StatementOutputDataBuilder
fn default() -> StatementOutputDataBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for StatementOutputDataBuilder
impl PartialEq for StatementOutputDataBuilder
source§fn eq(&self, other: &StatementOutputDataBuilder) -> bool
fn eq(&self, other: &StatementOutputDataBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StatementOutputDataBuilder
Auto Trait Implementations§
impl Freeze for StatementOutputDataBuilder
impl RefUnwindSafe for StatementOutputDataBuilder
impl Send for StatementOutputDataBuilder
impl Sync for StatementOutputDataBuilder
impl Unpin for StatementOutputDataBuilder
impl UnwindSafe for StatementOutputDataBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.