Struct aws_sdk_athena::types::QueryRuntimeStatisticsRows
source · #[non_exhaustive]pub struct QueryRuntimeStatisticsRows {
pub input_rows: Option<i64>,
pub input_bytes: Option<i64>,
pub output_bytes: Option<i64>,
pub output_rows: Option<i64>,
}Expand description
Statistics such as input rows and bytes read by the query, rows and bytes output by the query, and the number of rows written by the query.
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.input_rows: Option<i64>The number of rows read to execute the query.
input_bytes: Option<i64>The number of bytes read to execute the query.
output_bytes: Option<i64>The number of bytes returned by the query.
output_rows: Option<i64>The number of rows returned by the query.
Implementations§
source§impl QueryRuntimeStatisticsRows
impl QueryRuntimeStatisticsRows
sourcepub fn input_rows(&self) -> Option<i64>
pub fn input_rows(&self) -> Option<i64>
The number of rows read to execute the query.
sourcepub fn input_bytes(&self) -> Option<i64>
pub fn input_bytes(&self) -> Option<i64>
The number of bytes read to execute the query.
sourcepub fn output_bytes(&self) -> Option<i64>
pub fn output_bytes(&self) -> Option<i64>
The number of bytes returned by the query.
sourcepub fn output_rows(&self) -> Option<i64>
pub fn output_rows(&self) -> Option<i64>
The number of rows returned by the query.
source§impl QueryRuntimeStatisticsRows
impl QueryRuntimeStatisticsRows
sourcepub fn builder() -> QueryRuntimeStatisticsRowsBuilder
pub fn builder() -> QueryRuntimeStatisticsRowsBuilder
Creates a new builder-style object to manufacture QueryRuntimeStatisticsRows.
Trait Implementations§
source§impl Clone for QueryRuntimeStatisticsRows
impl Clone for QueryRuntimeStatisticsRows
source§fn clone(&self) -> QueryRuntimeStatisticsRows
fn clone(&self) -> QueryRuntimeStatisticsRows
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 QueryRuntimeStatisticsRows
impl Debug for QueryRuntimeStatisticsRows
source§impl PartialEq for QueryRuntimeStatisticsRows
impl PartialEq for QueryRuntimeStatisticsRows
source§fn eq(&self, other: &QueryRuntimeStatisticsRows) -> bool
fn eq(&self, other: &QueryRuntimeStatisticsRows) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for QueryRuntimeStatisticsRows
Auto Trait Implementations§
impl Freeze for QueryRuntimeStatisticsRows
impl RefUnwindSafe for QueryRuntimeStatisticsRows
impl Send for QueryRuntimeStatisticsRows
impl Sync for QueryRuntimeStatisticsRows
impl Unpin for QueryRuntimeStatisticsRows
impl UnwindSafe for QueryRuntimeStatisticsRows
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.