pub struct SparkPlanGraphCluster {
pub desc: Option<String>,
pub metrics: Option<Vec<SqlPlanMetric>>,
pub name: Option<String>,
pub nodes: Option<Vec<SparkPlanGraphNodeWrapper>>,
pub spark_plan_graph_cluster_id: Option<i64>,
}Expand description
Represents a tree of spark plan.
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
nodes: Option<Vec<SparkPlanGraphNodeWrapper>>no description provided
spark_plan_graph_cluster_id: Option<i64>no description provided
Trait Implementations§
Source§impl Clone for SparkPlanGraphCluster
impl Clone for SparkPlanGraphCluster
Source§fn clone(&self) -> SparkPlanGraphCluster
fn clone(&self) -> SparkPlanGraphCluster
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 SparkPlanGraphCluster
impl Debug for SparkPlanGraphCluster
Source§impl Default for SparkPlanGraphCluster
impl Default for SparkPlanGraphCluster
Source§fn default() -> SparkPlanGraphCluster
fn default() -> SparkPlanGraphCluster
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SparkPlanGraphCluster
impl<'de> Deserialize<'de> for SparkPlanGraphCluster
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 SparkPlanGraphCluster
impl Serialize for SparkPlanGraphCluster
impl Part for SparkPlanGraphCluster
Auto Trait Implementations§
impl Freeze for SparkPlanGraphCluster
impl RefUnwindSafe for SparkPlanGraphCluster
impl Send for SparkPlanGraphCluster
impl Sync for SparkPlanGraphCluster
impl Unpin for SparkPlanGraphCluster
impl UnwindSafe for SparkPlanGraphCluster
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