Struct aws_sdk_athena::types::ResultSet
source · #[non_exhaustive]pub struct ResultSet {
pub rows: Option<Vec<Row>>,
pub result_set_metadata: Option<ResultSetMetadata>,
}Expand description
The metadata and rows that make up a query result set. The metadata describes the column structure and data types. To return a ResultSet object, use GetQueryResults.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.rows: Option<Vec<Row>>The rows in the table.
result_set_metadata: Option<ResultSetMetadata>The metadata that describes the column structure and data types of a table of query results.
Implementations§
source§impl ResultSet
impl ResultSet
sourcepub fn result_set_metadata(&self) -> Option<&ResultSetMetadata>
pub fn 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 PartialEq<ResultSet> for ResultSet
impl PartialEq<ResultSet> for ResultSet
impl StructuralPartialEq for ResultSet
Auto Trait Implementations§
impl RefUnwindSafe for ResultSet
impl Send for ResultSet
impl Sync for ResultSet
impl Unpin for ResultSet
impl UnwindSafe for ResultSet
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