pub struct ApplicationInfo {
pub application_context_ingestion_status: Option<String>,
pub application_id: Option<String>,
pub attempts: Option<Vec<ApplicationAttemptInfo>>,
pub cores_granted: Option<i32>,
pub cores_per_executor: Option<i32>,
pub max_cores: Option<i32>,
pub memory_per_executor_mb: Option<i32>,
pub name: Option<String>,
pub quantile_data_status: Option<String>,
}Expand description
High level information corresponding to an application.
This type is not used in any activity, and only used as part of another schema.
Fields§
§application_context_ingestion_status: Option<String>no description provided
application_id: Option<String>no description provided
attempts: Option<Vec<ApplicationAttemptInfo>>no description provided
cores_granted: Option<i32>no description provided
cores_per_executor: Option<i32>no description provided
max_cores: Option<i32>no description provided
memory_per_executor_mb: Option<i32>no description provided
name: Option<String>no description provided
quantile_data_status: Option<String>no description provided
Trait Implementations§
Source§impl Clone for ApplicationInfo
impl Clone for ApplicationInfo
Source§fn clone(&self) -> ApplicationInfo
fn clone(&self) -> ApplicationInfo
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 ApplicationInfo
impl Debug for ApplicationInfo
Source§impl Default for ApplicationInfo
impl Default for ApplicationInfo
Source§fn default() -> ApplicationInfo
fn default() -> ApplicationInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationInfo
impl<'de> Deserialize<'de> for ApplicationInfo
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 ApplicationInfo
impl Serialize for ApplicationInfo
impl Part for ApplicationInfo
Auto Trait Implementations§
impl Freeze for ApplicationInfo
impl RefUnwindSafe for ApplicationInfo
impl Send for ApplicationInfo
impl Sync for ApplicationInfo
impl Unpin for ApplicationInfo
impl UnwindSafe for ApplicationInfo
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