pub struct RddOperationNode {
pub barrier: Option<bool>,
pub cached: Option<bool>,
pub callsite: Option<String>,
pub name: Option<String>,
pub node_id: Option<i32>,
pub output_deterministic_level: Option<String>,
}Expand description
A node in the RDD operation graph. Corresponds to a single RDD.
This type is not used in any activity, and only used as part of another schema.
Fields§
§barrier: Option<bool>no description provided
cached: Option<bool>no description provided
callsite: Option<String>no description provided
name: Option<String>no description provided
node_id: Option<i32>no description provided
output_deterministic_level: Option<String>no description provided
Trait Implementations§
Source§impl Clone for RddOperationNode
impl Clone for RddOperationNode
Source§fn clone(&self) -> RddOperationNode
fn clone(&self) -> RddOperationNode
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 RddOperationNode
impl Debug for RddOperationNode
Source§impl Default for RddOperationNode
impl Default for RddOperationNode
Source§fn default() -> RddOperationNode
fn default() -> RddOperationNode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RddOperationNode
impl<'de> Deserialize<'de> for RddOperationNode
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 RddOperationNode
impl Serialize for RddOperationNode
impl Part for RddOperationNode
Auto Trait Implementations§
impl Freeze for RddOperationNode
impl RefUnwindSafe for RddOperationNode
impl Send for RddOperationNode
impl Sync for RddOperationNode
impl Unpin for RddOperationNode
impl UnwindSafe for RddOperationNode
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