Struct google_bigquery2::ExplainQueryStage
source · pub struct ExplainQueryStage {Show 14 fields
pub status: Option<String>,
pub compute_ratio_max: Option<f64>,
pub name: Option<String>,
pub records_written: Option<String>,
pub wait_ratio_max: Option<f64>,
pub read_ratio_avg: Option<f64>,
pub read_ratio_max: Option<f64>,
pub steps: Option<Vec<ExplainQueryStep>>,
pub records_read: Option<String>,
pub compute_ratio_avg: Option<f64>,
pub write_ratio_max: Option<f64>,
pub wait_ratio_avg: Option<f64>,
pub id: Option<String>,
pub write_ratio_avg: Option<f64>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§status: Option<String>Current status for the stage.
compute_ratio_max: Option<f64>Relative amount of time the slowest shard spent on CPU-bound tasks.
name: Option<String>Human-readable name for stage.
records_written: Option<String>Number of records written by the stage.
wait_ratio_max: Option<f64>Relative amount of time the slowest shard spent waiting to be scheduled.
read_ratio_avg: Option<f64>Relative amount of time the average shard spent reading input.
read_ratio_max: Option<f64>Relative amount of time the slowest shard spent reading input.
steps: Option<Vec<ExplainQueryStep>>List of operations within the stage in dependency order (approximately chronological).
records_read: Option<String>Number of records read into the stage.
compute_ratio_avg: Option<f64>Relative amount of time the average shard spent on CPU-bound tasks.
write_ratio_max: Option<f64>Relative amount of time the slowest shard spent on writing output.
wait_ratio_avg: Option<f64>Relative amount of time the average shard spent waiting to be scheduled.
id: Option<String>Unique ID for stage within plan.
write_ratio_avg: Option<f64>Relative amount of time the average shard spent on writing output.
Trait Implementations§
source§impl Clone for ExplainQueryStage
impl Clone for ExplainQueryStage
source§fn clone(&self) -> ExplainQueryStage
fn clone(&self) -> ExplainQueryStage
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ExplainQueryStage
impl Debug for ExplainQueryStage
source§impl Default for ExplainQueryStage
impl Default for ExplainQueryStage
source§fn default() -> ExplainQueryStage
fn default() -> ExplainQueryStage
source§impl Deserialize for ExplainQueryStage
impl Deserialize for ExplainQueryStage
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
source§impl Serialize for ExplainQueryStage
impl Serialize for ExplainQueryStage
impl Part for ExplainQueryStage
Auto Trait Implementations§
impl Freeze for ExplainQueryStage
impl RefUnwindSafe for ExplainQueryStage
impl Send for ExplainQueryStage
impl Sync for ExplainQueryStage
impl Unpin for ExplainQueryStage
impl UnwindSafe for ExplainQueryStage
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
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)
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>
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>
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