pub struct StepPayload {
pub task_type: TaskType,
pub flow_run_id: FlowRunId,
pub node_id: NodeId,
pub node_type: NodeType,
pub flow_params: Option<Value>,
}Expand description
Payload for a Step task. Contains everything a Step handler needs to invoke a connector or execute a transform.
Fields§
§task_type: TaskTypeDiscriminator for the multiplexed handler.
flow_run_id: FlowRunIdThe FlowRunId this step belongs to.
node_id: NodeIdWhich node this step executes.
node_type: NodeTypeThe node’s type-specific configuration.
flow_params: Option<Value>Flow-level parameters (from FlowSpec.params).
Trait Implementations§
Source§impl Clone for StepPayload
impl Clone for StepPayload
Source§fn clone(&self) -> StepPayload
fn clone(&self) -> StepPayload
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 StepPayload
impl Debug for StepPayload
Source§impl<'de> Deserialize<'de> for StepPayload
impl<'de> Deserialize<'de> for StepPayload
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
Auto Trait Implementations§
impl Freeze for StepPayload
impl RefUnwindSafe for StepPayload
impl Send for StepPayload
impl Sync for StepPayload
impl Unpin for StepPayload
impl UnsafeUnpin for StepPayload
impl UnwindSafe for StepPayload
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