pub struct SparkPlanGraphNodeWrapper {
pub cluster: Option<SparkPlanGraphCluster>,
pub node: Option<SparkPlanGraphNode>,
}Expand description
Wrapper user to represent either a node or a cluster.
This type is not used in any activity, and only used as part of another schema.
Fields§
§cluster: Option<SparkPlanGraphCluster>no description provided
node: Option<SparkPlanGraphNode>no description provided
Trait Implementations§
Source§impl Clone for SparkPlanGraphNodeWrapper
impl Clone for SparkPlanGraphNodeWrapper
Source§fn clone(&self) -> SparkPlanGraphNodeWrapper
fn clone(&self) -> SparkPlanGraphNodeWrapper
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 SparkPlanGraphNodeWrapper
impl Debug for SparkPlanGraphNodeWrapper
Source§impl Default for SparkPlanGraphNodeWrapper
impl Default for SparkPlanGraphNodeWrapper
Source§fn default() -> SparkPlanGraphNodeWrapper
fn default() -> SparkPlanGraphNodeWrapper
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SparkPlanGraphNodeWrapper
impl<'de> Deserialize<'de> for SparkPlanGraphNodeWrapper
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 SparkPlanGraphNodeWrapper
Auto Trait Implementations§
impl Freeze for SparkPlanGraphNodeWrapper
impl RefUnwindSafe for SparkPlanGraphNodeWrapper
impl Send for SparkPlanGraphNodeWrapper
impl Sync for SparkPlanGraphNodeWrapper
impl Unpin for SparkPlanGraphNodeWrapper
impl UnwindSafe for SparkPlanGraphNodeWrapper
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