[][src]Struct google_bigquery2::JobStatistics

pub struct JobStatistics {
    pub load: Option<JobStatistics3>,
    pub num_child_jobs: Option<String>,
    pub row_level_security_statistics: Option<RowLevelSecurityStatistics>,
    pub completion_ratio: Option<f64>,
    pub reservation_usage: Option<Vec<JobStatisticsReservationUsage>>,
    pub total_bytes_processed: Option<String>,
    pub quota_deferments: Option<Vec<String>>,
    pub start_time: Option<String>,
    pub query: Option<JobStatistics2>,
    pub extract: Option<JobStatistics4>,
    pub parent_job_id: Option<String>,
    pub reservation_id: Option<String>,
    pub total_slot_ms: Option<String>,
    pub creation_time: Option<String>,
    pub script_statistics: Option<ScriptStatistics>,
    pub end_time: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

load: Option<JobStatistics3>

[Output-only] Statistics for a load job.

num_child_jobs: Option<String>

[Output-only] Number of child jobs executed.

row_level_security_statistics: Option<RowLevelSecurityStatistics>

[Output-only] [Preview] Statistics for row-level security. Present only for query and extract jobs.

completion_ratio: Option<f64>

[TrustedTester] [Output-only] Job progress (0.0 -> 1.0) for LOAD and EXTRACT jobs.

reservation_usage: Option<Vec<JobStatisticsReservationUsage>>

[Output-only] Job resource usage breakdown by reservation.

total_bytes_processed: Option<String>

[Output-only] [Deprecated] Use the bytes processed in the query statistics instead.

quota_deferments: Option<Vec<String>>

[Output-only] Quotas which delayed this job's start time.

start_time: Option<String>

[Output-only] Start time of this job, in milliseconds since the epoch. This field will be present when the job transitions from the PENDING state to either RUNNING or DONE.

query: Option<JobStatistics2>

[Output-only] Statistics for a query job.

extract: Option<JobStatistics4>

[Output-only] Statistics for an extract job.

parent_job_id: Option<String>

[Output-only] If this is a child job, the id of the parent.

reservation_id: Option<String>

[Output-only] Name of the primary reservation assigned to this job. Note that this could be different than reservations reported in the reservation usage field if parent reservations were used to execute this job.

total_slot_ms: Option<String>

[Output-only] Slot-milliseconds for the job.

creation_time: Option<String>

[Output-only] Creation time of this job, in milliseconds since the epoch. This field will be present on all jobs.

script_statistics: Option<ScriptStatistics>

[Output-only] Statistics for a child job of a script.

end_time: Option<String>

[Output-only] End time of this job, in milliseconds since the epoch. This field will be present whenever a job is in the DONE state.

Trait Implementations

impl Clone for JobStatistics[src]

impl Debug for JobStatistics[src]

impl Default for JobStatistics[src]

impl<'de> Deserialize<'de> for JobStatistics[src]

impl Part for JobStatistics[src]

impl Serialize 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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any