pub struct SparkPlanGraph {
pub edges: Option<Vec<SparkPlanGraphEdge>>,
pub execution_id: Option<i64>,
pub nodes: Option<Vec<SparkPlanGraphNodeWrapper>>,
}Expand description
A graph used for storing information of an executionPlan of DataFrame.
This type is not used in any activity, and only used as part of another schema.
Fields§
§edges: Option<Vec<SparkPlanGraphEdge>>no description provided
execution_id: Option<i64>no description provided
nodes: Option<Vec<SparkPlanGraphNodeWrapper>>no description provided
Trait Implementations§
Source§impl Clone for SparkPlanGraph
impl Clone for SparkPlanGraph
Source§fn clone(&self) -> SparkPlanGraph
fn clone(&self) -> SparkPlanGraph
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 SparkPlanGraph
impl Debug for SparkPlanGraph
Source§impl Default for SparkPlanGraph
impl Default for SparkPlanGraph
Source§fn default() -> SparkPlanGraph
fn default() -> SparkPlanGraph
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SparkPlanGraph
impl<'de> Deserialize<'de> for SparkPlanGraph
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 SparkPlanGraph
impl Serialize for SparkPlanGraph
impl Part for SparkPlanGraph
Auto Trait Implementations§
impl Freeze for SparkPlanGraph
impl RefUnwindSafe for SparkPlanGraph
impl Send for SparkPlanGraph
impl Sync for SparkPlanGraph
impl Unpin for SparkPlanGraph
impl UnwindSafe for SparkPlanGraph
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