#[non_exhaustive]pub struct GetStatementResultOutput {
pub records: Option<Vec<Vec<Field>>>,
pub column_metadata: Option<Vec<ColumnMetadata>>,
pub total_num_rows: i64,
pub next_token: Option<String>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.records: Option<Vec<Vec<Field>>>The results of the SQL statement.
column_metadata: Option<Vec<ColumnMetadata>>The properties (metadata) of a column.
total_num_rows: i64The total number of rows in the result set returned from a query. You can use this number to estimate the number of calls to the GetStatementResult operation needed to page through the results.
next_token: Option<String>A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned NextToken value in the next NextToken parameter and retrying the command. If the NextToken field is empty, all response records have been retrieved for the request.
Implementations
The properties (metadata) of a column.
The total number of rows in the result set returned from a query. You can use this number to estimate the number of calls to the GetStatementResult operation needed to page through the results.
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned NextToken value in the next NextToken parameter and retrying the command. If the NextToken field is empty, all response records have been retrieved for the request.
Creates a new builder-style object to manufacture GetStatementResultOutput
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for GetStatementResultOutput
impl Send for GetStatementResultOutput
impl Sync for GetStatementResultOutput
impl Unpin for GetStatementResultOutput
impl UnwindSafe for GetStatementResultOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more