pub struct SummarizeSparkApplicationExecutorsResponse {
pub active_executor_summary: Option<ConsolidatedExecutorSummary>,
pub application_id: Option<String>,
pub dead_executor_summary: Option<ConsolidatedExecutorSummary>,
pub total_executor_summary: Option<ConsolidatedExecutorSummary>,
}Expand description
Consolidated summary of executors for a Spark Application.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§active_executor_summary: Option<ConsolidatedExecutorSummary>Consolidated summary for active executors.
application_id: Option<String>Spark Application Id
dead_executor_summary: Option<ConsolidatedExecutorSummary>Consolidated summary for dead executors.
total_executor_summary: Option<ConsolidatedExecutorSummary>Overall consolidated summary for all executors.
Trait Implementations§
Source§impl Clone for SummarizeSparkApplicationExecutorsResponse
impl Clone for SummarizeSparkApplicationExecutorsResponse
Source§fn clone(&self) -> SummarizeSparkApplicationExecutorsResponse
fn clone(&self) -> SummarizeSparkApplicationExecutorsResponse
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 Default for SummarizeSparkApplicationExecutorsResponse
impl Default for SummarizeSparkApplicationExecutorsResponse
Source§fn default() -> SummarizeSparkApplicationExecutorsResponse
fn default() -> SummarizeSparkApplicationExecutorsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SummarizeSparkApplicationExecutorsResponse
impl<'de> Deserialize<'de> for SummarizeSparkApplicationExecutorsResponse
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
impl ResponseResult for SummarizeSparkApplicationExecutorsResponse
Auto Trait Implementations§
impl Freeze for SummarizeSparkApplicationExecutorsResponse
impl RefUnwindSafe for SummarizeSparkApplicationExecutorsResponse
impl Send for SummarizeSparkApplicationExecutorsResponse
impl Sync for SummarizeSparkApplicationExecutorsResponse
impl Unpin for SummarizeSparkApplicationExecutorsResponse
impl UnwindSafe for SummarizeSparkApplicationExecutorsResponse
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