pub struct JobStatistics4 {
pub destination_uri_file_counts: Option<Vec<i64>>,
pub input_bytes: Option<i64>,
pub timeline: Option<Vec<QueryTimelineSample>>,
}Expand description
Statistics for an extract job.
This type is not used in any activity, and only used as part of another schema.
Fields§
§destination_uri_file_counts: Option<Vec<i64>>Output only. Number of files per destination URI or URI pattern specified in the extract configuration. These values will be in the same order as the URIs specified in the ‘destinationUris’ field.
input_bytes: Option<i64>Output only. Number of user bytes extracted into the result. This is the byte count as computed by BigQuery for billing purposes and doesn’t have any relationship with the number of actual result bytes extracted in the desired format.
timeline: Option<Vec<QueryTimelineSample>>Output only. Describes a timeline of job execution.
Trait Implementations§
Source§impl Clone for JobStatistics4
impl Clone for JobStatistics4
Source§fn clone(&self) -> JobStatistics4
fn clone(&self) -> JobStatistics4
Returns a duplicate 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 JobStatistics4
impl Debug for JobStatistics4
Source§impl Default for JobStatistics4
impl Default for JobStatistics4
Source§fn default() -> JobStatistics4
fn default() -> JobStatistics4
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JobStatistics4
impl<'de> Deserialize<'de> for JobStatistics4
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 JobStatistics4
impl Serialize for JobStatistics4
impl Part for JobStatistics4
Auto Trait Implementations§
impl Freeze for JobStatistics4
impl RefUnwindSafe for JobStatistics4
impl Send for JobStatistics4
impl Sync for JobStatistics4
impl Unpin for JobStatistics4
impl UnwindSafe for JobStatistics4
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