Struct aws_sdk_athena::types::builders::ResultSetBuilder
source · #[non_exhaustive]pub struct ResultSetBuilder { /* private fields */ }Expand description
A builder for ResultSet.
Implementations§
source§impl ResultSetBuilder
impl ResultSetBuilder
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.
The rows in the table.
sourcepub fn result_set_metadata(self, input: ResultSetMetadata) -> Self
pub fn result_set_metadata(self, input: ResultSetMetadata) -> Self
The metadata that describes the column structure and data types of a table of query results.
sourcepub fn set_result_set_metadata(self, input: Option<ResultSetMetadata>) -> Self
pub fn set_result_set_metadata(self, input: Option<ResultSetMetadata>) -> Self
The metadata that describes the column structure and data types of a table of query results.
sourcepub fn get_result_set_metadata(&self) -> &Option<ResultSetMetadata>
pub fn get_result_set_metadata(&self) -> &Option<ResultSetMetadata>
The metadata that describes the column structure and data types of a table of query results.
Trait Implementations§
source§impl Clone for ResultSetBuilder
impl Clone for ResultSetBuilder
source§fn clone(&self) -> ResultSetBuilder
fn clone(&self) -> ResultSetBuilder
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 ResultSetBuilder
impl Debug for ResultSetBuilder
source§impl Default for ResultSetBuilder
impl Default for ResultSetBuilder
source§fn default() -> ResultSetBuilder
fn default() -> ResultSetBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ResultSetBuilder> for ResultSetBuilder
impl PartialEq<ResultSetBuilder> for ResultSetBuilder
source§fn eq(&self, other: &ResultSetBuilder) -> bool
fn eq(&self, other: &ResultSetBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ResultSetBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ResultSetBuilder
impl Send for ResultSetBuilder
impl Sync for ResultSetBuilder
impl Unpin for ResultSetBuilder
impl UnwindSafe for ResultSetBuilder
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