#[non_exhaustive]pub struct GetStatementResultOutput { /* private fields */ }Implementations§
source§impl GetStatementResultOutput
impl GetStatementResultOutput
sourcepub fn column_metadata(&self) -> Option<&[ColumnMetadata]>
pub fn column_metadata(&self) -> Option<&[ColumnMetadata]>
The properties (metadata) of a column.
sourcepub fn total_num_rows(&self) -> i64
pub fn total_num_rows(&self) -> i64
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.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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.
source§impl GetStatementResultOutput
impl GetStatementResultOutput
sourcepub fn builder() -> GetStatementResultOutputBuilder
pub fn builder() -> GetStatementResultOutputBuilder
Creates a new builder-style object to manufacture GetStatementResultOutput.
Trait Implementations§
source§impl Clone for GetStatementResultOutput
impl Clone for GetStatementResultOutput
source§fn clone(&self) -> GetStatementResultOutput
fn clone(&self) -> GetStatementResultOutput
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 GetStatementResultOutput
impl Debug for GetStatementResultOutput
source§impl PartialEq<GetStatementResultOutput> for GetStatementResultOutput
impl PartialEq<GetStatementResultOutput> for GetStatementResultOutput
source§fn eq(&self, other: &GetStatementResultOutput) -> bool
fn eq(&self, other: &GetStatementResultOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetStatementResultOutput
impl RequestId for GetStatementResultOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for GetStatementResultOutput
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§
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