Struct google_bigquery2::JobStatistics3
source · pub struct JobStatistics3 {
pub output_rows: Option<String>,
pub bad_records: Option<String>,
pub input_files: Option<String>,
pub output_bytes: Option<String>,
pub input_file_bytes: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§output_rows: Option<String>[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.
bad_records: Option<String>[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_files: Option<String>[Output-only] Number of source files in a load job.
output_bytes: Option<String>[Output-only] Size of the loaded data in bytes. Note that while a load job is in the running state, this value may change.
input_file_bytes: Option<String>[Output-only] Number of bytes of source data in a load job.
Trait Implementations§
source§impl Clone for JobStatistics3
impl Clone for JobStatistics3
source§fn clone(&self) -> JobStatistics3
fn clone(&self) -> JobStatistics3
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for JobStatistics3
impl Debug for JobStatistics3
source§impl Default for JobStatistics3
impl Default for JobStatistics3
source§fn default() -> JobStatistics3
fn default() -> JobStatistics3
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for JobStatistics3
impl<'de> Deserialize<'de> for JobStatistics3
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for JobStatistics3
impl Serialize for JobStatistics3
impl Part for JobStatistics3
Auto Trait Implementations§
impl Freeze for JobStatistics3
impl RefUnwindSafe for JobStatistics3
impl Send for JobStatistics3
impl Sync for JobStatistics3
impl Unpin for JobStatistics3
impl UnwindSafe for JobStatistics3
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more