pub struct ApplicationEnvironmentInfo {
pub classpath_entries: Option<HashMap<String, String>>,
pub hadoop_properties: Option<HashMap<String, String>>,
pub metrics_properties: Option<HashMap<String, String>>,
pub resource_profiles: Option<Vec<ResourceProfileInfo>>,
pub runtime: Option<SparkRuntimeInfo>,
pub spark_properties: Option<HashMap<String, String>>,
pub system_properties: Option<HashMap<String, String>>,
}Expand description
Details about the Environment that the application is running in.
This type is not used in any activity, and only used as part of another schema.
Fields§
§classpath_entries: Option<HashMap<String, String>>no description provided
hadoop_properties: Option<HashMap<String, String>>no description provided
metrics_properties: Option<HashMap<String, String>>no description provided
resource_profiles: Option<Vec<ResourceProfileInfo>>no description provided
runtime: Option<SparkRuntimeInfo>no description provided
spark_properties: Option<HashMap<String, String>>no description provided
system_properties: Option<HashMap<String, String>>no description provided
Trait Implementations§
Source§impl Clone for ApplicationEnvironmentInfo
impl Clone for ApplicationEnvironmentInfo
Source§fn clone(&self) -> ApplicationEnvironmentInfo
fn clone(&self) -> ApplicationEnvironmentInfo
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 ApplicationEnvironmentInfo
impl Debug for ApplicationEnvironmentInfo
Source§impl Default for ApplicationEnvironmentInfo
impl Default for ApplicationEnvironmentInfo
Source§fn default() -> ApplicationEnvironmentInfo
fn default() -> ApplicationEnvironmentInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationEnvironmentInfo
impl<'de> Deserialize<'de> for ApplicationEnvironmentInfo
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 Part for ApplicationEnvironmentInfo
Auto Trait Implementations§
impl Freeze for ApplicationEnvironmentInfo
impl RefUnwindSafe for ApplicationEnvironmentInfo
impl Send for ApplicationEnvironmentInfo
impl Sync for ApplicationEnvironmentInfo
impl Unpin for ApplicationEnvironmentInfo
impl UnwindSafe for ApplicationEnvironmentInfo
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