#[non_exhaustive]pub struct ExecuteQueryOutputBuilder { /* private fields */ }
Expand description
A builder for ExecuteQueryOutput
.
Implementations§
source§impl ExecuteQueryOutputBuilder
impl ExecuteQueryOutputBuilder
sourcepub fn column_descriptions(self, input: ColumnDescription) -> Self
pub fn column_descriptions(self, input: ColumnDescription) -> Self
Appends an item to column_descriptions
.
To override the contents of this collection use set_column_descriptions
.
A list of ColumnDescription objects.
sourcepub fn set_column_descriptions(
self,
input: Option<Vec<ColumnDescription>>
) -> Self
pub fn set_column_descriptions( self, input: Option<Vec<ColumnDescription>> ) -> Self
A list of ColumnDescription objects.
sourcepub fn get_column_descriptions(&self) -> &Option<Vec<ColumnDescription>>
pub fn get_column_descriptions(&self) -> &Option<Vec<ColumnDescription>>
A list of ColumnDescription objects.
sourcepub fn rows(self, input: Row) -> Self
pub fn rows(self, input: Row) -> Self
Appends an item to rows
.
To override the contents of this collection use set_rows
.
Represents a single row in the query results.
sourcepub fn set_rows(self, input: Option<Vec<Row>>) -> Self
pub fn set_rows(self, input: Option<Vec<Row>>) -> Self
Represents a single row in the query results.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The string that specifies the next page of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The string that specifies the next page of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The string that specifies the next page of results.
sourcepub fn build(self) -> ExecuteQueryOutput
pub fn build(self) -> ExecuteQueryOutput
Consumes the builder and constructs a ExecuteQueryOutput
.
Trait Implementations§
source§impl Clone for ExecuteQueryOutputBuilder
impl Clone for ExecuteQueryOutputBuilder
source§fn clone(&self) -> ExecuteQueryOutputBuilder
fn clone(&self) -> ExecuteQueryOutputBuilder
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 ExecuteQueryOutputBuilder
impl Debug for ExecuteQueryOutputBuilder
source§impl Default for ExecuteQueryOutputBuilder
impl Default for ExecuteQueryOutputBuilder
source§fn default() -> ExecuteQueryOutputBuilder
fn default() -> ExecuteQueryOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ExecuteQueryOutputBuilder
impl PartialEq for ExecuteQueryOutputBuilder
source§fn eq(&self, other: &ExecuteQueryOutputBuilder) -> bool
fn eq(&self, other: &ExecuteQueryOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ExecuteQueryOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ExecuteQueryOutputBuilder
impl Send for ExecuteQueryOutputBuilder
impl Sync for ExecuteQueryOutputBuilder
impl Unpin for ExecuteQueryOutputBuilder
impl UnwindSafe for ExecuteQueryOutputBuilder
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>
Creates a shared type from an unshared type.