Struct gapi_grpc::google::cloud::bigquery::logging::v1::JobStatistics[][src]

pub struct JobStatistics {
    pub create_time: Option<Timestamp>,
    pub start_time: Option<Timestamp>,
    pub end_time: Option<Timestamp>,
    pub total_processed_bytes: i64,
    pub total_billed_bytes: i64,
    pub billing_tier: i32,
    pub total_slot_ms: i64,
    pub reservation_usage: Vec<ReservationResourceUsage>,
    pub referenced_tables: Vec<TableName>,
    pub total_tables_processed: i32,
    pub referenced_views: Vec<TableName>,
    pub total_views_processed: i32,
    pub query_output_row_count: i64,
    pub total_load_output_bytes: i64,
}

Job statistics that may change after a job starts.

Fields

create_time: Option<Timestamp>

Time when the job was created.

start_time: Option<Timestamp>

Time when the job started.

end_time: Option<Timestamp>

Time when the job ended.

total_processed_bytes: i64

Total bytes processed for a job.

total_billed_bytes: i64

Processed bytes, adjusted by the job’s CPU usage.

billing_tier: i32

The tier assigned by CPU-based billing.

total_slot_ms: i64

The total number of slot-ms consumed by the query job.

reservation_usage: Vec<ReservationResourceUsage>

Reservation usage.

referenced_tables: Vec<TableName>

The first N tables accessed by the query job. Older queries that reference a large number of tables may not have all of their tables in this list. You can use the total_tables_processed count to know how many total tables were read in the query. For new queries, there is currently no limit.

total_tables_processed: i32

Total number of unique tables referenced in the query.

referenced_views: Vec<TableName>

The first N views accessed by the query job. Older queries that reference a large number of views may not have all of their views in this list. You can use the total_tables_processed count to know how many total tables were read in the query. For new queries, there is currently no limit.

total_views_processed: i32

Total number of unique views referenced in the query.

query_output_row_count: i64

Number of output rows produced by the query job.

total_load_output_bytes: i64

Total bytes loaded for an import job.

Trait Implementations

impl Clone for JobStatistics[src]

impl Debug for JobStatistics[src]

impl Default for JobStatistics[src]

impl Message for JobStatistics[src]

impl PartialEq<JobStatistics> for JobStatistics[src]

impl StructuralPartialEq for JobStatistics[src]

Auto Trait Implementations

impl RefUnwindSafe for JobStatistics

impl Send for JobStatistics

impl Sync for JobStatistics

impl Unpin for JobStatistics

impl UnwindSafe for JobStatistics

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]