pub struct Builder { /* private fields */ }
Expand description
A builder for QueryRuntimeStatisticsRows
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn input_rows(self, input: i64) -> Self
pub fn input_rows(self, input: i64) -> Self
The number of rows read to execute the query.
sourcepub fn set_input_rows(self, input: Option<i64>) -> Self
pub fn set_input_rows(self, input: Option<i64>) -> Self
The number of rows read to execute the query.
sourcepub fn input_bytes(self, input: i64) -> Self
pub fn input_bytes(self, input: i64) -> Self
The number of bytes read to execute the query.
sourcepub fn set_input_bytes(self, input: Option<i64>) -> Self
pub fn set_input_bytes(self, input: Option<i64>) -> Self
The number of bytes read to execute the query.
sourcepub fn output_bytes(self, input: i64) -> Self
pub fn output_bytes(self, input: i64) -> Self
The number of bytes returned by the query.
sourcepub fn set_output_bytes(self, input: Option<i64>) -> Self
pub fn set_output_bytes(self, input: Option<i64>) -> Self
The number of bytes returned by the query.
sourcepub fn output_rows(self, input: i64) -> Self
pub fn output_rows(self, input: i64) -> Self
The number of rows returned by the query.
sourcepub fn set_output_rows(self, input: Option<i64>) -> Self
pub fn set_output_rows(self, input: Option<i64>) -> Self
The number of rows returned by the query.
sourcepub fn build(self) -> QueryRuntimeStatisticsRows
pub fn build(self) -> QueryRuntimeStatisticsRows
Consumes the builder and constructs a QueryRuntimeStatisticsRows
.