pub struct JobStatistics3 {
pub bad_records: Option<i64>,
pub input_file_bytes: Option<i64>,
pub input_files: Option<i64>,
pub output_bytes: Option<i64>,
pub output_rows: Option<i64>,
pub timeline: Option<Vec<QueryTimelineSample>>,
}Expand description
Statistics for a load job.
This type is not used in any activity, and only used as part of another schema.
Fields§
§bad_records: Option<i64>Output only. The number of bad records encountered. Note that if the job has failed because of more bad records encountered than the maximum allowed in the load job configuration, then this number can be less than the total number of bad records present in the input data.
input_file_bytes: Option<i64>Output only. Number of bytes of source data in a load job.
input_files: Option<i64>Output only. Number of source files in a load job.
output_bytes: Option<i64>Output only. Size of the loaded data in bytes. Note that while a load job is in the running state, this value may change.
output_rows: Option<i64>Output only. Number of rows imported in a load job. Note that while an import job is in the running state, this value may change.
timeline: Option<Vec<QueryTimelineSample>>Output only. Describes a timeline of job execution.
Trait Implementations§
Source§impl Clone for JobStatistics3
impl Clone for JobStatistics3
Source§fn clone(&self) -> JobStatistics3
fn clone(&self) -> JobStatistics3
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more