Struct aws_sdk_timestreamquery::operation::query::QueryOutput
source · #[non_exhaustive]pub struct QueryOutput {
pub query_id: String,
pub next_token: Option<String>,
pub rows: Vec<Row>,
pub column_info: Vec<ColumnInfo>,
pub query_status: Option<QueryStatus>,
/* private fields */
}
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.query_id: String
A unique ID for the given query.
next_token: Option<String>
A pagination token that can be used again on a Query
call to get the next set of results.
rows: Vec<Row>
The result set rows returned by the query.
column_info: Vec<ColumnInfo>
The column data types of the returned result set.
query_status: Option<QueryStatus>
Information about the status of the query, including progress and bytes scanned.
Implementations§
source§impl QueryOutput
impl QueryOutput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A pagination token that can be used again on a Query
call to get the next set of results.
sourcepub fn column_info(&self) -> &[ColumnInfo]
pub fn column_info(&self) -> &[ColumnInfo]
The column data types of the returned result set.
sourcepub fn query_status(&self) -> Option<&QueryStatus>
pub fn query_status(&self) -> Option<&QueryStatus>
Information about the status of the query, including progress and bytes scanned.
source§impl QueryOutput
impl QueryOutput
sourcepub fn builder() -> QueryOutputBuilder
pub fn builder() -> QueryOutputBuilder
Creates a new builder-style object to manufacture QueryOutput
.
Trait Implementations§
source§impl Clone for QueryOutput
impl Clone for QueryOutput
source§fn clone(&self) -> QueryOutput
fn clone(&self) -> QueryOutput
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 QueryOutput
impl Debug for QueryOutput
source§impl PartialEq for QueryOutput
impl PartialEq for QueryOutput
source§fn eq(&self, other: &QueryOutput) -> bool
fn eq(&self, other: &QueryOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for QueryOutput
impl RequestId for QueryOutput
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 QueryOutput
Auto Trait Implementations§
impl RefUnwindSafe for QueryOutput
impl Send for QueryOutput
impl Sync for QueryOutput
impl Unpin for QueryOutput
impl UnwindSafe for QueryOutput
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.