[][src]Struct gcp_client::google::spanner::v1::ResultSetStats

pub struct ResultSetStats {
    pub query_plan: Option<QueryPlan>,
    pub query_stats: Option<Struct>,
    pub row_count: Option<RowCount>,
}

Additional statistics about a [ResultSet][google.spanner.v1.ResultSet] or [PartialResultSet][google.spanner.v1.PartialResultSet].

Fields

query_plan: Option<QueryPlan>

[QueryPlan][google.spanner.v1.QueryPlan] for the query associated with this result.

query_stats: Option<Struct>

Aggregated statistics from the execution of the query. Only present when the query is profiled. For example, a query could return the statistics as follows:

{
  "rows_returned": "3",
  "elapsed_time": "1.22 secs",
  "cpu_time": "1.19 secs"
}
row_count: Option<RowCount>

The number of rows modified by the DML statement.

Trait Implementations

impl Clone for ResultSetStats[src]

impl Debug for ResultSetStats[src]

impl Default for ResultSetStats[src]

impl Message for ResultSetStats[src]

impl PartialEq<ResultSetStats> for ResultSetStats[src]

impl StructuralPartialEq for ResultSetStats[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]