pub struct StageAttemptTasksSummary {
pub application_id: Option<String>,
pub num_failed_tasks: Option<i32>,
pub num_killed_tasks: Option<i32>,
pub num_pending_tasks: Option<i32>,
pub num_running_tasks: Option<i32>,
pub num_success_tasks: Option<i32>,
pub num_tasks: Option<i32>,
pub stage_attempt_id: Option<i32>,
pub stage_id: Option<i64>,
}Expand description
Data related to tasks summary for a Spark Stage Attempt
This type is not used in any activity, and only used as part of another schema.
Fields§
§application_id: Option<String>no description provided
num_failed_tasks: Option<i32>no description provided
num_killed_tasks: Option<i32>no description provided
num_pending_tasks: Option<i32>no description provided
num_running_tasks: Option<i32>no description provided
num_success_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 StageAttemptTasksSummary
impl Clone for StageAttemptTasksSummary
Source§fn clone(&self) -> StageAttemptTasksSummary
fn clone(&self) -> StageAttemptTasksSummary
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 StageAttemptTasksSummary
impl Debug for StageAttemptTasksSummary
Source§impl Default for StageAttemptTasksSummary
impl Default for StageAttemptTasksSummary
Source§fn default() -> StageAttemptTasksSummary
fn default() -> StageAttemptTasksSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StageAttemptTasksSummary
impl<'de> Deserialize<'de> for StageAttemptTasksSummary
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 StageAttemptTasksSummary
impl Serialize for StageAttemptTasksSummary
impl Part for StageAttemptTasksSummary
Auto Trait Implementations§
impl Freeze for StageAttemptTasksSummary
impl RefUnwindSafe for StageAttemptTasksSummary
impl Send for StageAttemptTasksSummary
impl Sync for StageAttemptTasksSummary
impl Unpin for StageAttemptTasksSummary
impl UnwindSafe for StageAttemptTasksSummary
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