Struct aws_sdk_athena::model::QueryRuntimeStatisticsRows
source · #[non_exhaustive]pub struct QueryRuntimeStatisticsRows { /* private fields */ }
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.
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() -> Builder
pub fn builder() -> Builder
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<QueryRuntimeStatisticsRows> for QueryRuntimeStatisticsRows
impl PartialEq<QueryRuntimeStatisticsRows> 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 ==
.