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