#[non_exhaustive]pub struct JobStatistics4 {
pub destination_uri_file_counts: Vec<i64>,
pub input_bytes: Option<Int64Value>,
pub timeline: Vec<QueryTimelineSample>,
/* private fields */
}Expand description
Statistics for an extract job.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.destination_uri_file_counts: 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<Int64Value>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: Vec<QueryTimelineSample>Output only. Describes a timeline of job execution.
Implementations§
Source§impl JobStatistics4
impl JobStatistics4
Sourcepub fn set_destination_uri_file_counts<T, V>(self, v: T) -> Self
pub fn set_destination_uri_file_counts<T, V>(self, v: T) -> Self
Sets the value of destination_uri_file_counts.
§Example
ⓘ
let x = JobStatistics4::new().set_destination_uri_file_counts([1, 2, 3]);Sourcepub fn set_input_bytes<T>(self, v: T) -> Selfwhere
T: Into<Int64Value>,
pub fn set_input_bytes<T>(self, v: T) -> Selfwhere
T: Into<Int64Value>,
Sets the value of input_bytes.
§Example
ⓘ
use wkt::Int64Value;
let x = JobStatistics4::new().set_input_bytes(Int64Value::default()/* use setters */);Sourcepub fn set_or_clear_input_bytes<T>(self, v: Option<T>) -> Selfwhere
T: Into<Int64Value>,
pub fn set_or_clear_input_bytes<T>(self, v: Option<T>) -> Selfwhere
T: Into<Int64Value>,
Sets or clears the value of input_bytes.
§Example
ⓘ
use wkt::Int64Value;
let x = JobStatistics4::new().set_or_clear_input_bytes(Some(Int64Value::default()/* use setters */));
let x = JobStatistics4::new().set_or_clear_input_bytes(None::<Int64Value>);Sourcepub fn set_timeline<T, V>(self, v: T) -> Self
pub fn set_timeline<T, V>(self, v: T) -> Self
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 (const: unstable) · 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 Message for JobStatistics4
impl Message for JobStatistics4
Source§impl PartialEq for JobStatistics4
impl PartialEq for JobStatistics4
impl StructuralPartialEq 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 UnsafeUnpin 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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
Source§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request