pub struct SpeculationStageSummary {
pub num_active_tasks: Option<i32>,
pub num_completed_tasks: Option<i32>,
pub num_failed_tasks: Option<i32>,
pub num_killed_tasks: Option<i32>,
pub num_tasks: Option<i32>,
pub stage_attempt_id: Option<i32>,
pub stage_id: Option<i64>,
}Expand description
Details of the speculation task when speculative execution is enabled.
This type is not used in any activity, and only used as part of another schema.
Fields§
§num_active_tasks: Option<i32>no description provided
num_completed_tasks: Option<i32>no description provided
num_failed_tasks: Option<i32>no description provided
num_killed_tasks: Option<i32>no description provided
num_tasks: Option<i32>no description provided
stage_attempt_id: Option<i32>no description provided
stage_id: Option<i64>no description provided
Trait Implementations§
Source§impl Clone for SpeculationStageSummary
impl Clone for SpeculationStageSummary
Source§fn clone(&self) -> SpeculationStageSummary
fn clone(&self) -> SpeculationStageSummary
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 SpeculationStageSummary
impl Debug for SpeculationStageSummary
Source§impl Default for SpeculationStageSummary
impl Default for SpeculationStageSummary
Source§fn default() -> SpeculationStageSummary
fn default() -> SpeculationStageSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SpeculationStageSummary
impl<'de> Deserialize<'de> for SpeculationStageSummary
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 SpeculationStageSummary
impl Serialize for SpeculationStageSummary
impl Part for SpeculationStageSummary
Auto Trait Implementations§
impl Freeze for SpeculationStageSummary
impl RefUnwindSafe for SpeculationStageSummary
impl Send for SpeculationStageSummary
impl Sync for SpeculationStageSummary
impl Unpin for SpeculationStageSummary
impl UnwindSafe for SpeculationStageSummary
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