pub struct NodeStartedData {
pub id: String,
pub node_id: String,
pub node_type: String,
pub title: String,
pub index: u32,
pub predecessor_node_id: Option<String>,
pub inputs: Option<Value>,
pub created_at: u64,
}
Expand description
node 详细内容
Fields§
§id: String
workflow 执行 ID
node_id: String
节点 ID
node_type: String
节点类型
title: String
节点名称
index: u32
执行序号,用于展示 Tracing Node 顺序
predecessor_node_id: Option<String>
前置节点 ID,用于画布展示执行路径
inputs: Option<Value>
节点中所有使用到的前置节点变量内容
created_at: u64
开始时间
Trait Implementations§
Source§impl Clone for NodeStartedData
impl Clone for NodeStartedData
Source§fn clone(&self) -> NodeStartedData
fn clone(&self) -> NodeStartedData
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 NodeStartedData
impl Debug for NodeStartedData
Source§impl<'de> Deserialize<'de> for NodeStartedData
impl<'de> Deserialize<'de> for NodeStartedData
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 NodeStartedData
impl RefUnwindSafe for NodeStartedData
impl Send for NodeStartedData
impl Sync for NodeStartedData
impl Unpin for NodeStartedData
impl UnwindSafe for NodeStartedData
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