pub struct RddOperationGraph {
pub edges: Option<Vec<RddOperationEdge>>,
pub incoming_edges: Option<Vec<RddOperationEdge>>,
pub outgoing_edges: Option<Vec<RddOperationEdge>>,
pub root_cluster: Option<RddOperationCluster>,
pub stage_id: Option<i64>,
}Expand description
Graph representing RDD dependencies. Consists of edges and a root cluster.
This type is not used in any activity, and only used as part of another schema.
Fields§
§edges: Option<Vec<RddOperationEdge>>no description provided
incoming_edges: Option<Vec<RddOperationEdge>>no description provided
outgoing_edges: Option<Vec<RddOperationEdge>>no description provided
root_cluster: Option<RddOperationCluster>no description provided
stage_id: Option<i64>no description provided
Trait Implementations§
Source§impl Clone for RddOperationGraph
impl Clone for RddOperationGraph
Source§fn clone(&self) -> RddOperationGraph
fn clone(&self) -> RddOperationGraph
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 RddOperationGraph
impl Debug for RddOperationGraph
Source§impl Default for RddOperationGraph
impl Default for RddOperationGraph
Source§fn default() -> RddOperationGraph
fn default() -> RddOperationGraph
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RddOperationGraph
impl<'de> Deserialize<'de> for RddOperationGraph
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 RddOperationGraph
impl Serialize for RddOperationGraph
impl Part for RddOperationGraph
Auto Trait Implementations§
impl Freeze for RddOperationGraph
impl RefUnwindSafe for RddOperationGraph
impl Send for RddOperationGraph
impl Sync for RddOperationGraph
impl Unpin for RddOperationGraph
impl UnwindSafe for RddOperationGraph
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