Struct google_cloud_bigquery::http::job::QueryTimelineSample
source · pub struct QueryTimelineSample {
pub elapsed_ms: Option<i64>,
pub total_slot_ms: Option<i64>,
pub pending_units: Option<i64>,
pub completed_units: Option<i64>,
pub active_units: Option<i64>,
pub estimated_runnable_units: Option<i64>,
}Fields§
§elapsed_ms: Option<i64>Milliseconds elapsed since the start of query execution.
total_slot_ms: Option<i64>Cumulative slot-ms consumed by the query.
pending_units: Option<i64>Total units of work remaining for the query. This number can be revised (increased or decreased) while the query is running.
completed_units: Option<i64>Total parallel units of work completed by this query.
active_units: Option<i64>Total number of active workers. This does not correspond directly to slot usage. This is the largest value observed since the last sample.
estimated_runnable_units: Option<i64>Units of work that can be scheduled immediately. Providing additional slots for these units of work will accelerate the query, if no other query in the reservation needs additional slots.
Trait Implementations§
source§impl Clone for QueryTimelineSample
impl Clone for QueryTimelineSample
source§fn clone(&self) -> QueryTimelineSample
fn clone(&self) -> QueryTimelineSample
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 QueryTimelineSample
impl Debug for QueryTimelineSample
source§impl Default for QueryTimelineSample
impl Default for QueryTimelineSample
source§fn default() -> QueryTimelineSample
fn default() -> QueryTimelineSample
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for QueryTimelineSample
impl<'de> Deserialize<'de> for QueryTimelineSample
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 PartialEq<QueryTimelineSample> for QueryTimelineSample
impl PartialEq<QueryTimelineSample> for QueryTimelineSample
source§fn eq(&self, other: &QueryTimelineSample) -> bool
fn eq(&self, other: &QueryTimelineSample) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for QueryTimelineSample
impl Serialize for QueryTimelineSample
impl StructuralPartialEq for QueryTimelineSample
Auto Trait Implementations§
impl RefUnwindSafe for QueryTimelineSample
impl Send for QueryTimelineSample
impl Sync for QueryTimelineSample
impl Unpin for QueryTimelineSample
impl UnwindSafe for QueryTimelineSample
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> 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