pub struct SparkPlanGraphNode {
pub desc: Option<String>,
pub metrics: Option<Vec<SqlPlanMetric>>,
pub name: Option<String>,
pub spark_plan_graph_node_id: Option<i64>,
}Expand description
Represents a node in the spark plan tree.
This type is not used in any activity, and only used as part of another schema.
Fields§
§desc: Option<String>no description provided
metrics: Option<Vec<SqlPlanMetric>>no description provided
name: Option<String>no description provided
spark_plan_graph_node_id: Option<i64>no description provided
Trait Implementations§
Source§impl Clone for SparkPlanGraphNode
impl Clone for SparkPlanGraphNode
Source§fn clone(&self) -> SparkPlanGraphNode
fn clone(&self) -> SparkPlanGraphNode
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 SparkPlanGraphNode
impl Debug for SparkPlanGraphNode
Source§impl Default for SparkPlanGraphNode
impl Default for SparkPlanGraphNode
Source§fn default() -> SparkPlanGraphNode
fn default() -> SparkPlanGraphNode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SparkPlanGraphNode
impl<'de> Deserialize<'de> for SparkPlanGraphNode
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 SparkPlanGraphNode
impl Serialize for SparkPlanGraphNode
impl Part for SparkPlanGraphNode
Auto Trait Implementations§
impl Freeze for SparkPlanGraphNode
impl RefUnwindSafe for SparkPlanGraphNode
impl Send for SparkPlanGraphNode
impl Sync for SparkPlanGraphNode
impl Unpin for SparkPlanGraphNode
impl UnwindSafe for SparkPlanGraphNode
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