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

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,
}

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.

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

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]